forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document render-blocking with <link rel=expect>
https://bugs.webkit.org/show_bug.cgi?id=268743 <rdar://122797243> Reviewed by Tim Nguyen. Implements the render-blocking concept on Document, and the rel=expect attribute for <link>. https://html.spec.whatwg.org/multipage/dom.html#block-rendering utils.js changed to generate a unique URL for each parser delay, otherwise we cache the loads (which may not be spec compliant, but unrelated to render-blocking). Render blocking uses the existing code addVisualUpdatePreventedReason to prevent rendering, and rAF. Some of the test fail because they have no render blocking (since an attempt was rejected due to a mismatched media query or similar). These tests expect rendering to happen mid-parsing, but don't due to our existing layer tree freezing code. I've opted not to change the existing behaviour for now, and only have this kick in when there is explicit (and active) render blocking elements. As an optimization, when an <a> element changes, we pass that element into the 'process internal resource links' algorithm. Rather than doing a tree search for each link looking for matching anchors, we can just directly check if the link matches the mutated <a>. * LayoutTests/TestExpectations: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-002-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-004-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-005-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-007-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-009-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-010-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-013-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-014-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-015-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-016-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-017-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-018-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-019-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-020-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-021-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-022-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-023-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-025-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-026-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-028-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-029-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-030-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-031-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-032-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-034-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-035-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-036-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-037-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-038-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/remove-element-unblocks-rendering.optional-expected.txt: * LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/support/utils.js: (generateParserDelay): * LayoutTests/imported/w3c/web-platform-tests/loading/resources/dummy.js: Added. * LayoutTests/platform/glib/TestExpectations: * Source/WebCore/dom/Document.cpp: (WebCore::Document::setReadyState): (WebCore::Document::setVisualUpdatesAllowed): (WebCore::Document::addVisualUpdatePreventedReason): (WebCore::Document::removeVisualUpdatePreventedReason): (WebCore::Document::visualUpdatesSuppressionTimerFired): (WebCore::Document::setVisualUpdatesAllowedByClient): (WebCore::Document::suspend): (WebCore::Document::resume): (WebCore::Document::allowsAddingRenderBlockedElements const): (WebCore::Document::isRenderBlocked const): (WebCore::Document::blockRenderingOn): (WebCore::Document::unblockRenderingOn): (WebCore::Document::processInternalResourceLinks): * Source/WebCore/dom/Document.h: (WebCore::Document::visualUpdatesAllowed const): * Source/WebCore/html/HTMLAnchorElement.cpp: (WebCore::HTMLAnchorElement::attributeChanged): (WebCore::HTMLAnchorElement::insertedIntoAncestor): * Source/WebCore/html/HTMLAnchorElement.h: * Source/WebCore/html/HTMLAttributeNames.in: * Source/WebCore/html/HTMLLinkElement.cpp: (WebCore::ExpectIdTargetObserver::ExpectIdTargetObserver): (WebCore::ExpectIdTargetObserver::idTargetChanged): (WebCore::HTMLLinkElement::attributeChanged): (WebCore::HTMLLinkElement::process): (WebCore::HTMLLinkElement::processInternalResourceLink): (WebCore::HTMLLinkElement::unblockRendering): (WebCore::HTMLLinkElement::removedFromAncestor): (WebCore::HTMLLinkElement::blocking): * Source/WebCore/html/HTMLLinkElement.h: * Source/WebCore/html/HTMLLinkElement.idl: * Source/WebCore/html/LinkRelAttribute.cpp: (WebCore::LinkRelAttribute::LinkRelAttribute): * Source/WebCore/html/LinkRelAttribute.h: Canonical link: https://commits.webkit.org/282279@main
- Loading branch information
1 parent
dc2829c
commit 0e9bbd9
Showing
45 changed files
with
216 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...s/imported/w3c/web-platform-tests/html/dom/render-blocking/blocking-idl-attr-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-002-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL blocking defers until needed element is parsed assert_false: expected false got true | ||
PASS blocking defers until needed element is parsed | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-004-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing link in the head makes it no longer blocking assert_false: expected false got true | ||
PASS removing link in the head makes it no longer blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-005-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing 'blocking' makes it no longer blocking assert_false: expected false got true | ||
PASS removing 'blocking' makes it no longer blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-007-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL link with non-matching media has no effect assert_false: expected false got true | ||
PASS link with non-matching media has no effect | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-009-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL changing media to non-matching makes it non blocking assert_false: expected false got true | ||
PASS changing media to non-matching makes it non blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-010-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CONSOLE MESSAGE: Did not parse stylesheet at 'http://localhost:8800/html/dom/render-blocking/element-render-blocking-010.html' because non CSS MIME types are not allowed in strict mode. | ||
|
||
FAIL changing rel to non-expect makes it non blocking assert_false: expected false got true | ||
PASS changing rel to non-expect makes it non blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-013-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing href makes it no longer blocking assert_false: expected false got true | ||
PASS removing href makes it no longer blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-014-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL link in the body has no effect assert_false: expected false got true | ||
PASS link in the body has no effect | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-015-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing link the body makes it non blocking assert_false: expected false got true | ||
PASS removing link the body makes it non blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-016-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing 'blocking' in the body makes it non blocking assert_false: expected false got true | ||
PASS removing 'blocking' in the body makes it non blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-017-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL adding 'blocking=render' in the body has no effect assert_false: expected false got true | ||
PASS adding 'blocking=render' in the body has no effect | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-018-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL changing media to matching in the body has no effect assert_false: expected false got true | ||
PASS changing media to matching in the body has no effect | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-019-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL changing media to non-matching in the body makes it non blocking assert_false: expected false got true | ||
PASS changing media to non-matching in the body makes it non blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-020-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CONSOLE MESSAGE: Did not parse stylesheet at 'http://localhost:8800/html/dom/render-blocking/element-render-blocking-020.html' because non CSS MIME types are not allowed in strict mode. | ||
|
||
FAIL changing rel to non-expect in the body makes it non blocking assert_false: expected false got true | ||
PASS changing rel to non-expect in the body makes it non blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-021-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CONSOLE MESSAGE: Did not parse stylesheet at 'http://localhost:8800/html/dom/render-blocking/element-render-blocking-021.html' because non CSS MIME types are not allowed in strict mode. | ||
|
||
FAIL changing rel to expect in the body has no effect assert_false: expected false got true | ||
PASS changing rel to expect in the body has no effect | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-022-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL adding href in the body has no effect assert_false: expected false got true | ||
PASS adding href in the body has no effect | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-023-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing href in the body makes it non blocking assert_false: expected false got true | ||
PASS removing href in the body makes it non blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-025-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL adding an id in the body satisfies render block assert_false: expected false got true | ||
PASS adding an id in the body satisfies render block | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-026-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing id after it was renderer keeps render block satisfied assert_false: expected false got true | ||
PASS removing id after it was renderer keeps render block satisfied | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-028-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL removing some links but not all keeps at least the matching link blocking assert_false: expected false got true | ||
PASS removing some links but not all keeps at least the matching link blocking | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-029-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL blocking defers frames until full parsing assert_false: expected false got true | ||
PASS blocking defers frames until full parsing | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-030-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL blocking defers frames until full parsing assert_false: expected false got true | ||
PASS blocking defers frames until full parsing | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-031-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL blocking defers frames until full parsing assert_false: expected false got true | ||
PASS blocking defers frames until full parsing | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-032-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL blocking defers frames until full parsing assert_false: expected false got true | ||
PASS blocking defers frames until full parsing | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-034-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL relative URLs that match this document are OK assert_false: expected false got true | ||
PASS relative URLs that match this document are OK | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-035-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL relative URLs that match this document are OK, regarless of <base> assert_false: expected false got true | ||
PASS relative URLs that match this document are OK, regarless of <base> | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-036-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL link URLs are relative to base URL, not to document URL assert_false: expected false got true | ||
PASS link URLs are relative to base URL, not to document URL | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-037-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL relative URLs that match this document are OK, regarless of <base> assert_false: expected false got true | ||
PASS relative URLs that match this document are OK, regarless of <base> | ||
|
2 changes: 1 addition & 1 deletion
2
.../w3c/web-platform-tests/html/dom/render-blocking/element-render-blocking-038-expected.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL link rel=expect: only connected elements are eligible assert_false: The last element should not be there yet, even though it's created (in a shadow root) expected false got true | ||
PASS link rel=expect: only connected elements are eligible | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
LayoutTests/imported/w3c/web-platform-tests/html/dom/render-blocking/support/utils.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
LayoutTests/imported/w3c/web-platform-tests/loading/resources/dummy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* Nothing to see here */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,7 @@ axis | |
background | ||
behavior | ||
bgcolor | ||
blocking | ||
border | ||
bordercolor | ||
capture | ||
|
Oops, something went wrong.