Commit ebf845ac authored by Yoichi Osato's avatar Yoichi Osato Committed by Commit Bot

Reland "Show Deprecation message for Shadow DOM V0."

This patch marks it removed at M73.
Intent to Deprecate and Remove:
https://groups.google.com/a/chromium.org/d/msg/blink-dev/h-JwMiPUnuU/sl79aLoLBQAJ

Bug: 671907
Change-Id: I30df492e54c60d54aa45924fc71f109fe1be2420
Reviewed-on: https://chromium-review.googlesource.com/1192567
Commit-Queue: Yoichi Osato <yoichio@chromium.org>
Reviewed-by: default avatarKent Tamura <tkent@chromium.org>
Reviewed-by: default avatarHayato Ito <hayato@chromium.org>
Cr-Commit-Position: refs/heads/master@{#587480}
parent 25109c04
...@@ -90,6 +90,9 @@ void TestInterfaces::ConfigureForTestWithURL(const blink::WebURL& test_url, ...@@ -90,6 +90,9 @@ void TestInterfaces::ConfigureForTestWithURL(const blink::WebURL& test_url,
if (path_start != std::string::npos) if (path_start != std::string::npos)
spec = spec.substr(path_start); spec = spec.substr(path_start);
bool is_devtools_test = spec.find("/devtools/") != std::string::npos; bool is_devtools_test = spec.find("/devtools/") != std::string::npos;
if (is_devtools_test) {
test_runner_->SetDumpConsoleMessages(false);
}
test_runner_->setShouldGeneratePixelResults(generate_pixels); test_runner_->setShouldGeneratePixelResults(generate_pixels);
// For http/tests/loading/, which is served via httpd and becomes /loading/. // For http/tests/loading/, which is served via httpd and becomes /loading/.
if (spec.find("/loading/") != std::string::npos) if (spec.find("/loading/") != std::string::npos)
......
...@@ -162,6 +162,10 @@ class TestRunner : public WebTestRunner { ...@@ -162,6 +162,10 @@ class TestRunner : public WebTestRunner {
midi::mojom::Result midiAccessorResult(); midi::mojom::Result midiAccessorResult();
bool ShouldDumpConsoleMessages() const; bool ShouldDumpConsoleMessages() const;
// Controls whether console messages produced by the page are dumped
// to test output.
void SetDumpConsoleMessages(bool value);
bool ShouldDumpJavaScriptDialogs() const; bool ShouldDumpJavaScriptDialogs() const;
blink::WebEffectiveConnectionType effective_connection_type() const { blink::WebEffectiveConnectionType effective_connection_type() const {
...@@ -422,10 +426,6 @@ class TestRunner : public WebTestRunner { ...@@ -422,10 +426,6 @@ class TestRunner : public WebTestRunner {
// policy passed to the decidePolicyForNavigation callback. // policy passed to the decidePolicyForNavigation callback.
void DumpNavigationPolicy(); void DumpNavigationPolicy();
// Controls whether console messages produced by the page are dumped
// to test output.
void SetDumpConsoleMessages(bool value);
// Controls whether JavaScript dialogs such as alert() are dumped to test // Controls whether JavaScript dialogs such as alert() are dumped to test
// output. // output.
void SetDumpJavaScriptDialogs(bool value); void SetDumpJavaScriptDialogs(bool value);
......
CONSOLE WARNING: line 26: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Make sure that a debug assert is not triggered when a call to LayoutBlockFlow::deleteLineBoxTree calls AccessibilityRenderObject::accessibilityIsIgnored which may require the AXObject for a node that is being deleted. Make sure that a debug assert is not triggered when a call to LayoutBlockFlow::deleteLineBoxTree calls AccessibilityRenderObject::accessibilityIsIgnored which may require the AXObject for a node that is being deleted.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 27: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS window.innerWidth is 800 PASS window.innerWidth is 800
PASS window.innerHeight is 600 PASS window.innerHeight is 600
PASS getComputedStyle(test).fontSize is '30px' PASS getComputedStyle(test).fontSize is '30px'
......
CONSOLE ERROR: line 29: The given range isn't in document. CONSOLE ERROR: line 29: The given range isn't in document.
CONSOLE WARNING: line 46: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test error handling of Selection.addRange(). Test error handling of Selection.addRange().
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 7: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test passes if it does not crash This test passes if it does not crash
CONSOLE WARNING: line 19: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Selecting around a table which is distributed from shadow subtree to nested shadow subtree will trigger an assertion. To try manually, select from "shadow 2" to around "after" and confirm a crash does not occur. Selecting around a table which is distributed from shadow subtree to nested shadow subtree will trigger an assertion. To try manually, select from "shadow 2" to around "after" and confirm a crash does not occur.
PASS PASS
CONSOLE WARNING: line 20: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Applying document.execCommand('Bold') to elements having insertion points (<shadow> or <content>) shoud not cause a crash. Applying document.execCommand('Bold') to elements having insertion points (<shadow> or <content>) shoud not cause a crash.
To test manually, make a selection from somewhere in "nested before" to somehwere in "nested after", then press Ctrl+B twice. It should not cause a crash. To test manually, make a selection from somewhere in "nested before" to somehwere in "nested after", then press Ctrl+B twice. It should not cause a crash.
......
CONSOLE WARNING: line 18: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
When selecting from a child of ShadowRoot to an element outside of shadow host, a crash should not be caused. When selecting from a child of ShadowRoot to an element outside of shadow host, a crash should not be caused.
To test manually, select from 'before shadow' to 'after host'. To test manually, select from 'before shadow' to 'after host'.
......
CONSOLE WARNING: line 16: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
When selecting from a child of shadow host to an element in Shadow DOM, a crash should not be caused. This is because the start position of Selection comes after the end position of Selection. When selecting from a child of shadow host to an element in Shadow DOM, a crash should not be caused. This is because the start position of Selection comes after the end position of Selection.
before host drag from here after host before host drag from here after host
......
CONSOLE WARNING: line 17: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
On the second time selecting <span>, it should not become non-contenteditable. If it becomes non-contenteditable, the selection from <span> to <table> will break editing boundaries and contain "a". This test checks the <span> does not changed to non-contenteditable element. On the second time selecting <span>, it should not become non-contenteditable. If it becomes non-contenteditable, the selection from <span> to <table> will break editing boundaries and contain "a". This test checks the <span> does not changed to non-contenteditable element.
PASS contains(selectedString, "a") is false PASS contains(selectedString, "a") is false
......
CONSOLE WARNING: line 20: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS selection2.anchorNode is selection2.focusNode PASS selection2.anchorNode is selection2.focusNode
PASS selection2.anchorOffset is 5 PASS selection2.anchorOffset is 5
PASS selection2.focusOffset is 0 PASS selection2.focusOffset is 0
......
CONSOLE WARNING: line 21: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test checks that content-editable is not propagated from shadow host to a shadow subtree. This test checks that content-editable is not propagated from shadow host to a shadow subtree.
This p is required to produce the issue. This p is required to produce the issue.
......
CONSOLE WARNING: line 13: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test checks that contenteditable is propagated to distributed nodes. This test checks that contenteditable is propagated to distributed nodes.
PASS getComputedStyle(shadowRoot.querySelector('span'), null).webkitUserModify is "read-only" PASS getComputedStyle(shadowRoot.querySelector('span'), null).webkitUserModify is "read-only"
......
CONSOLE WARNING: line 9: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This tests the deletion of text in distributed node does not crash. To run it outside of DRT, you must delete text, 'foo', manually. This tests the deletion of text in distributed node does not crash. To run it outside of DRT, you must delete text, 'foo', manually.
PASS PASS
CONSOLE WARNING: line 22: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Elements distributed to Shadow DOM should be deleted correctly when pressing delete key. Elements distributed to Shadow DOM should be deleted correctly when pressing delete key.
To test manually, select somewhere in ABCDE from somehwere in 12345, and press delete, and check the selected text is deleted correctly. To test manually, select somewhere in ABCDE from somehwere in 12345, and press delete, and check the selected text is deleted correctly.
......
CONSOLE WARNING: line 16: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
In this test, we do execCommand('Indent') in the direct child of ShadowRoot to confirm a crash doesn't happen. In this test, we do execCommand('Indent') in the direct child of ShadowRoot to confirm a crash doesn't happen.
......
CONSOLE WARNING: line 21: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test confirms some combination of editing command with Shadow DOM does not cause a crash. To test manually, select from (before nested) to (after nested), then press Italic, and InsertUnorderedList. This test confirms some combination of editing command with Shadow DOM does not cause a crash. To test manually, select from (before nested) to (after nested), then press Italic, and InsertUnorderedList.
PASS PASS
CONSOLE WARNING: line 22: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Pressing enter on the last character of <li> element in Shadow DOM was triggering assertion, because modifying Shadow DOM removes the renderer in Shadow DOM and desendant of shadow host. Pressing enter on the last character of <li> element in Shadow DOM was triggering assertion, because modifying Shadow DOM removes the renderer in Shadow DOM and desendant of shadow host.
This tests confirms it won't happen any more. This tests confirms it won't happen any more.
......
CONSOLE WARNING: line 17: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test ensures context click around meter won't crash. This test ensures context click around meter won't crash.
PASS PASS
CONSOLE WARNING: line 19: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test confirms that selecting an element having Shadow DOM doesn't cross editing boundaries errornously. This test confirms that selecting an element having Shadow DOM doesn't cross editing boundaries errornously.
BEFORE BEFORE
......
CONSOLE WARNING: line 24: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
SelectAll and Shadow DOM Tree SelectAll and Shadow DOM Tree
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 16: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Nodes of the selection for an orphan shadow root should return null. Nodes of the selection for an orphan shadow root should return null.
PASS selection.anchorNode is null PASS selection.anchorNode is null
......
CONSOLE WARNING: line 16: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS assertNotInShadow(selection.anchorNode) is true PASS assertNotInShadow(selection.anchorNode) is true
PASS assertNotInShadow(selection.focusNode) is true PASS assertNotInShadow(selection.focusNode) is true
PASS assertNotInShadow(selection.anchorNode) is true PASS assertNotInShadow(selection.anchorNode) is true
......
CONSOLE WARNING: line 22: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Unit tests for WebCore text iterator with shadow tree support enabled Unit tests for WebCore text iterator with shadow tree support enabled
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 19: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Find text in shadow roots. Find text in shadow roots.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 7: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 25: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Click Me Click Me
Chain of active elements should be cleared including the Shadow DOM elements Chain of active elements should be cleared including the Shadow DOM elements
......
CONSOLE WARNING: line 10: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Checking if styles in the nested shadow roots apply properly to distributed elements. (v0 bug compatible) Checking if styles in the nested shadow roots apply properly to distributed elements. (v0 bug compatible)
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 17: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Check that getComputedStyle causes a shadow re-distribution when necessary. Check that getComputedStyle causes a shadow re-distribution when necessary.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 11: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
No need to invalidate for selectors right of ::content as ::content causes subtree invalidation. No need to invalidate for selectors right of ::content as ::content causes subtree invalidation.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 13: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS successfullyParsed is true PASS successfullyParsed is true
TEST COMPLETE TEST COMPLETE
......
CONSOLE WARNING: line 34: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Removing a shadow tree stylesheet should cause an invalidation set update. Removing a shadow tree stylesheet should cause an invalidation set update.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 22: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Insert a style element into a shadow tree affecting a distributed node. Insert a style element into a shadow tree affecting a distributed node.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 14: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Insert a style element into a shadow tree affecting the host. Insert a style element into a shadow tree affecting the host.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 8: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS getComputedStyle(foo).backgroundColor is "rgb(0, 128, 0)" PASS getComputedStyle(foo).backgroundColor is "rgb(0, 128, 0)"
PASS successfullyParsed is true PASS successfullyParsed is true
......
CONSOLE WARNING: line 25: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Check that targeted class invalidation works for ::content selectors. Check that targeted class invalidation works for ::content selectors.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 13: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Check that targeted class invalidation works with the :host pseudo class. Check that targeted class invalidation works with the :host pseudo class.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 5: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS internals.updateStyleAndReturnAffectedElementCount() is 1 PASS internals.updateStyleAndReturnAffectedElementCount() is 1
PASS getComputedStyle(rootDiv).backgroundColor is "rgb(255, 0, 0)" PASS getComputedStyle(rootDiv).backgroundColor is "rgb(255, 0, 0)"
PASS internals.updateStyleAndReturnAffectedElementCount() is 1 PASS internals.updateStyleAndReturnAffectedElementCount() is 1
......
CONSOLE WARNING: line 10: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS if no crash. PASS if no crash.
CONSOLE WARNING: line 6: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Remove style element before its shadow root is attached to document but it should not crash. Remove style element before its shadow root is attached to document but it should not crash.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 15: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS unless crash PASS unless crash
PASS successfullyParsed is true PASS successfullyParsed is true
......
CONSOLE WARNING: line 12: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test that cycle detection traverses over both templates and shadow roots Test that cycle detection traverses over both templates and shadow roots
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
crbug.com/359854: test for traversing elements in shadow tree. crbug.com/359854: test for traversing elements in shadow tree.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 12: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Testing <style>... Testing <style>...
PASS sheet.ownerNode is style PASS sheet.ownerNode is style
PASS style.sheet === sheet is true PASS style.sheet === sheet is true
......
CONSOLE WARNING: line 12: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS shadowRoot.styleSheets.length is 2 PASS shadowRoot.styleSheets.length is 2
PASS successfullyParsed is true PASS successfullyParsed is true
......
CONSOLE WARNING: line 38: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS shadowRoot.elementsFromPoint() threw exception TypeError: Failed to execute 'elementsFromPoint' on 'ShadowRoot': 2 arguments required, but only 0 present.. PASS shadowRoot.elementsFromPoint() threw exception TypeError: Failed to execute 'elementsFromPoint' on 'ShadowRoot': 2 arguments required, but only 0 present..
PASS shadowRoot.elementsFromPoint(0) threw exception TypeError: Failed to execute 'elementsFromPoint' on 'ShadowRoot': 2 arguments required, but only 1 present.. PASS shadowRoot.elementsFromPoint(0) threw exception TypeError: Failed to execute 'elementsFromPoint' on 'ShadowRoot': 2 arguments required, but only 1 present..
......
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test passes if it does not crash. Test passes if it does not crash.
CONSOLE WARNING: line 28: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test should not crash on ASAN This test should not crash on ASAN
CONSOLE WARNING: line 9: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
importNode should throw informative errors for unsupported node types importNode should throw informative errors for unsupported node types
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
...@@ -39,9 +39,9 @@ PASS All correct nodes found for rect ...@@ -39,9 +39,9 @@ PASS All correct nodes found for rect
PASS All correct nodes found for rect PASS All correct nodes found for rect
PASS All correct nodes found for rect PASS All correct nodes found for rect
PASS All correct nodes found for rect PASS All correct nodes found for rect
PASS All correct nodes found for rect FAIL Unexpected node #0 for rect [39,202], [2,41] - DIV#d2
PASS All correct nodes found for rect FAIL Unexpected node #1 for rect [39,202], [6,41] - DIV#d2
PASS All correct nodes found for rect FAIL Unexpected node #2 for rect [39,202], [16,41] - DIV#d2
PASS All correct nodes found for rect PASS All correct nodes found for rect
PASS All correct nodes found for rect PASS All correct nodes found for rect
PASS All correct nodes found for rect PASS All correct nodes found for rect
......
CONSOLE WARNING: line 12: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test for crbug.com/337059: accessing StyleSheetList::document() from GC causes crash. Test for crbug.com/337059: accessing StyleSheetList::document() from GC causes crash.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests to ensure that accesskey works in regard to shadow DOM boundary. Can only run within DRT. Tests to ensure that accesskey works in regard to shadow DOM boundary. Can only run within DRT.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 32: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Makes sure that document.activeElement returns a shadow host when a element in the correspoinding shadow tree is focused. Makes sure that document.activeElement returns a shadow host when a element in the correspoinding shadow tree is focused.
......
CONSOLE WARNING: line 12: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS successfullyParsed is true PASS successfullyParsed is true
TEST COMPLETE TEST COMPLETE
......
CONSOLE WARNING: line 11: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test for issue 432257: Matched properties cache should work for all property. Test for issue 432257: Matched properties cache should work for all property.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 5: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Title attribute should be ignored for style elements in shadow trees. Title attribute should be ignored for style elements in shadow trees.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 27: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Links should be clickable even when their content is projected into them. Links should be clickable even when their content is projected into them.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 13: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS anchorInShadow.href.indexOf("http://www.example.com") is -1 PASS anchorInShadow.href.indexOf("http://www.example.com") is -1
PASS anchorInHostChildren.href.indexOf("http://www.example.com") is -1 PASS anchorInHostChildren.href.indexOf("http://www.example.com") is -1
PASS anchorOutsideOfShadow.href.indexOf("http://www.example.com") is -1 PASS anchorOutsideOfShadow.href.indexOf("http://www.example.com") is -1
......
CONSOLE WARNING: line 25: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS internals.treeScopeRootNode(range.startContainer) is document PASS internals.treeScopeRootNode(range.startContainer) is document
PASS internals.treeScopeRootNode(range.endContainer) is document PASS internals.treeScopeRootNode(range.endContainer) is document
PASS successfullyParsed is true PASS successfullyParsed is true
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test for casacde of treeboundary crossing rules. Test for casacde of treeboundary crossing rules.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests for Node.compareDocumentPosition() for nodes in shadow tree. Tests for Node.compareDocumentPosition() for nodes in shadow tree.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests for TreeScope.comparePosition(). Tests for TreeScope.comparePosition().
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests for node's contains(). Tests for node's contains().
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 10: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS unless crash. PASS unless crash.
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests for content element's getDistributedNodes(). Tests for content element's getDistributedNodes().
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 29: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
contentElementInVideoElement contentElementInVideoElement
PASS PASS
TEST COMPLETED TEST COMPLETED
......
CONSOLE WARNING: line 29: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
contentElementInMeterElement contentElementInMeterElement
PASS PASS
TEST COMPLETED TEST COMPLETED
......
CONSOLE WARNING: line 29: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
contentElementInProgressElement contentElementInProgressElement
PASS PASS
TEST COMPLETED TEST COMPLETED
......
CONSOLE WARNING: line 29: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
contentElementInSelectElement contentElementInSelectElement
PASS PASS
TEST COMPLETED TEST COMPLETED
......
CONSOLE WARNING: line 32: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This tests the correctness of includers of forwarded children. This tests the correctness of includers of forwarded children.
Note that this test needs internals object thus cannot run outside DRT. Note that this test needs internals object thus cannot run outside DRT.
PASS includerFor(childOfElementWithoutShadow) is null PASS includerFor(childOfElementWithoutShadow) is null
......
CONSOLE WARNING: line 26: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
testRemoveContent testRemoveContent
PASS PASS
testRemoveContentToRecalc1 testRemoveContentToRecalc1
......
CONSOLE WARNING: line 83: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test compares a shadow-based render tree with one for a reference DOM tree. This test compares a shadow-based render tree with one for a reference DOM tree.
Note that this test only runs on DRT. Note that this test only runs on DRT.
PASS[0,0]: content=<div/> shadow=<content/> PASS[0,0]: content=<div/> shadow=<content/>
......
CONSOLE WARNING: line 29: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
testChangeSelect1 testChangeSelect1
PASS PASS
testChangeSelect2 testChangeSelect2
......
CONSOLE WARNING: line 9: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Accept simple selectors after ::content For Polymer 0.5 compat Accept simple selectors after ::content For Polymer 0.5 compat
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test for crbug.com/274059. Compare rules from a style in a shadow tree with ::content in a different shadow tree. Test for crbug.com/274059. Compare rules from a style in a shadow tree with ::content in a different shadow tree.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 33: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
content content
Test for crbug.com/274059. Should be able to override ::content styles in shadow root style sheet from the document. Test for crbug.com/274059. Should be able to override ::content styles in shadow root style sheet from the document.
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
content content
Test for crbug.com/274063: cannot style ::content with a rule that includes :host. Test for crbug.com/274063: cannot style ::content with a rule that includes :host.
......
CONSOLE WARNING: line 34: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
content content
Test for crbug.com/274063, cannot style ::content with a rule that includes :host. Test for crbug.com/274063, cannot style ::content with a rule that includes :host.
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Test for http://crbug.com/360679, ::content rules in nested ShadowDOM should match correctly. Test for http://crbug.com/360679, ::content rules in nested ShadowDOM should match correctly.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 13: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
A crash should not happen when fallback elements are reprojected. A crash should not happen when fallback elements are reprojected.
PASS distributedNodes.item(0) is shadowRoot1.getElementById("fallback") PASS distributedNodes.item(0) is shadowRoot1.getElementById("fallback")
......
CONSOLE WARNING: line 16: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Redistribution into same position should not cause style recalc Redistribution into same position should not cause style recalc
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 32: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
dark: copy is fired. dark: copy is fired.
host: copy is fired. host: copy is fired.
dark: cut is fired. dark: cut is fired.
......
CONSOLE WARNING: line 30: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
dark: copy is fired. dark: copy is fired.
host: copy is fired. host: copy is fired.
dark: cut is fired. dark: cut is fired.
......
CONSOLE WARNING: line 27: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test compares a shadow-based render tree with one for a reference DOM tree. This test compares a shadow-based render tree with one for a reference DOM tree.
PASS PASS
CONSOLE WARNING: line 7: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests that CSSComputedStyleDeclaration.length with dirty distribution doesn't crash. Tests that CSSComputedStyleDeclaration.length with dirty distribution doesn't crash.
CONSOLE WARNING: line 13: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
CONSOLE MESSAGE: line 20: Failed to execute 'appendChild' on 'Node': The new child element contains the parent. CONSOLE MESSAGE: line 20: Failed to execute 'appendChild' on 'Node': The new child element contains the parent.
If this does not crash, the test passed. If this does not crash, the test passed.
CONSOLE WARNING: line 15: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Distributions from disconnected subtrees should be cleared when inserted again to avoid cycles. Distributions from disconnected subtrees should be cleared when inserted again to avoid cycles.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS document.activeElement.id is "input1" PASS document.activeElement.id is "input1"
PASS document.activeElement.id is "input1" PASS document.activeElement.id is "input1"
......
CONSOLE WARNING: line 8: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
distribution should be recalculated correctly for a detached subtree. distribution should be recalculated correctly for a detached subtree.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 11: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
B, A, CAPTURING_PHASE B, A, CAPTURING_PHASE
B, #document-fragment, CAPTURING_PHASE B, #document-fragment, CAPTURING_PHASE
B, CONTENT, CAPTURING_PHASE B, CONTENT, CAPTURING_PHASE
......
CONSOLE WARNING: line 27: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests to ensure that updating the select rule in projection causes style recalc. Tests to ensure that updating the select rule in projection causes style recalc.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
Tests whether we can start dragging a node in shadow trees. Tests whether we can start dragging a node in shadow trees.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
......
CONSOLE WARNING: line 13: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
This test checks selecting from outside of a shadow tree and to inside of a shadow tree won't crash. This test checks selecting from outside of a shadow tree and to inside of a shadow tree won't crash.
PASS PASS
CONSOLE WARNING: line 21: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS successfullyParsed is true PASS successfullyParsed is true
TEST COMPLETE TEST COMPLETE
......
CONSOLE WARNING: line 24: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS successfullyParsed is true PASS successfullyParsed is true
TEST COMPLETE TEST COMPLETE
......
CONSOLE WARNING: line 25: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS internals.treeScopeRootNode(element) is document PASS internals.treeScopeRootNode(element) is document
PASS successfullyParsed is true PASS successfullyParsed is true
......
CONSOLE WARNING: line 11: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
<a>: Before appendChild, named_a should not be in document. <a>: Before appendChild, named_a should not be in document.
PASS element.name in document is false PASS element.name in document is false
PASS element.name in window is false PASS element.name in window is false
......
CONSOLE WARNING: line 31: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
PASS shadowRoot.elementFromPoint() threw exception TypeError: Failed to execute 'elementFromPoint' on 'ShadowRoot': 2 arguments required, but only 0 present.. PASS shadowRoot.elementFromPoint() threw exception TypeError: Failed to execute 'elementFromPoint' on 'ShadowRoot': 2 arguments required, but only 0 present..
PASS shadowRoot.elementFromPoint(0) threw exception TypeError: Failed to execute 'elementFromPoint' on 'ShadowRoot': 2 arguments required, but only 1 present.. PASS shadowRoot.elementFromPoint(0) threw exception TypeError: Failed to execute 'elementFromPoint' on 'ShadowRoot': 2 arguments required, but only 1 present..
......
CONSOLE WARNING: line 87: Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead. See https://www.chromestatus.com/features/4507242028072960 for more details.
event.path on node #C event.path on node #C
#C, #B, #F, #J, #I, #M, #L, #K, #H, #G, #E, #D, #A, #sandbox, [object HTMLBodyElement], [object HTMLHtmlElement], [object HTMLDocument], [object Window], length: 18 #C, #B, #F, #J, #I, #M, #L, #K, #H, #G, #E, #D, #A, #sandbox, [object HTMLBodyElement], [object HTMLHtmlElement], [object HTMLDocument], [object Window], length: 18
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment