Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: third_party/WebKit/LayoutTests/shadow-dom/multiple-shadowroot-with-params-expected.txt

Issue 2051373002: Rewrite and organize tests in LayoutTests/shadow-dom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean-test2-3
Patch Set: clean up Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/shadow-dom/multiple-shadowroot-with-params-expected.txt
diff --git a/third_party/WebKit/LayoutTests/shadow-dom/multiple-shadowroot-with-params-expected.txt b/third_party/WebKit/LayoutTests/shadow-dom/multiple-shadowroot-with-params-expected.txt
deleted file mode 100644
index c615bef1f8fbdb6f4748bc825391b70fd18c062d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/shadow-dom/multiple-shadowroot-with-params-expected.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-CONSOLE WARNING: line 31: Calling Element.createShadowRoot() for an element which already hosts a shadow root is deprecated. See https://www.chromestatus.com/features/4668884095336448 for more details.
-This tests multiple shadow roots creation with createShadowRoot and mode parameter.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-createShadowRoot() can still create multiple shadow roots.
-PASS internals.shadowRootType(shadow1) is "V0ShadowRoot"
-PASS internals.shadowRootType(shadow2) is "V0ShadowRoot"
-PASS internals.youngestShadowRoot(div) is shadow2
-PASS shadow2.olderShadowRoot is shadow1
-Other attempts to create multiple shadow roots should fail
-PASS internals.shadowRootType(shadow1) is "V0ShadowRoot"
-PASS div.attachShadow({mode: "open"}) threw exception InvalidStateError: Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree..
-PASS div.attachShadow({mode: "closed"}) threw exception InvalidStateError: Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree..
-PASS internals.youngestShadowRoot(div) is shadow1
-PASS internals.shadowRootType(shadow1) is "OpenShadowRoot"
-PASS div.createShadowRoot() threw exception InvalidStateError: Failed to execute 'createShadowRoot' on 'Element': Shadow root cannot be created on a host which already hosts a v1 shadow tree..
-PASS div.attachShadow({mode: "open"}) threw exception InvalidStateError: Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree..
-PASS div.attachShadow({mode: "closed"}) threw exception InvalidStateError: Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree..
-PASS internals.youngestShadowRoot(div) is shadow1
-PASS internals.shadowRootType(shadow1) is "ClosedShadowRoot"
-PASS div.createShadowRoot() threw exception InvalidStateError: Failed to execute 'createShadowRoot' on 'Element': Shadow root cannot be created on a host which already hosts a v1 shadow tree..
-PASS div.attachShadow({mode: "open"}) threw exception InvalidStateError: Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree..
-PASS div.attachShadow({mode: "closed"}) threw exception InvalidStateError: Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree..
-PASS internals.youngestShadowRoot(div) is shadow1
-V0 shadow root cannot be created on UA shadow root
-PASS internals.shadowRootType(internals.shadowRoot(input)) is "UserAgentShadowRoot"
-PASS input.createShadowRoot() threw exception InvalidStateError: Failed to execute 'createShadowRoot' on 'Element': Shadow root cannot be created on a host which already hosts an user-agent shadow tree..
-PASS input.attachShadow({mode: "open"}) threw exception NotSupportedError: Failed to execute 'attachShadow' on 'Element': This element does not support attachShadow.
-PASS input.attachShadow({mode: "closed"}) threw exception NotSupportedError: Failed to execute 'attachShadow' on 'Element': This element does not support attachShadow.
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698