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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html

Issue 2843883002: Remove, or rewrite if necessary, tests which use /deep/ or ::shadow (Closed)
Patch Set: Created 3 years, 8 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/fast/dom/shadow/dynamically-created-shadow-root.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html
deleted file mode 100644
index 935a58f578f4f21cbb8e8c0fa29f638cc582fbfc..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/dynamically-created-shadow-root.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<body>
-<div>
-This tests that dynamically created ShadowRoot should be rendered correctly.
-Can only run within DRT.
-</div>
-<div id="host1">Light children should not be rendered.</div>
-<script>
-if (window.internals) {
- var host1 = document.querySelector('#host1');
- var shadowRoot = host1.createShadowRoot();
- shadowRoot.appendChild(document.createTextNode('Shadow should be rendered.'));
-}
-</script>
-</body>
-</html>
kochi 2017/04/26 07:12:52 Although I'm all for removing this test case, this
hayato 2017/04/26 07:19:18 Thanks. I guess this is accidental. Let me check i

Powered by Google App Engine
This is Rietveld 408576698