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

Side by Side 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, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <body>
3 <div>
4 This tests that dynamically created ShadowRoot should be rendered correctly.
5 Can only run within DRT.
6 </div>
7 <div id="host1">Light children should not be rendered.</div>
8 <script>
9 if (window.internals) {
10 var host1 = document.querySelector('#host1');
11 var shadowRoot = host1.createShadowRoot();
12 shadowRoot.appendChild(document.createTextNode('Shadow should be rendered.') );
13 }
14 </script>
15 </body>
16 </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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698