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

Side by Side Diff: LayoutTests/fast/dom/StyleSheet/detached-shadow-style.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <div id='sandbox'></div> 7 <div id='sandbox'></div>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script> 9 <script>
10 var sandbox = document.getElementById('sandbox'); 10 var sandbox = document.getElementById('sandbox');
(...skipping 15 matching lines...) Expand all
26 shouldBe('style.sheet', 'null') 26 shouldBe('style.sheet', 'null')
27 shouldBe('sheet.ownerNode', 'null') 27 shouldBe('sheet.ownerNode', 'null')
28 shouldBe('sheet.cssRules[0].cssText[0]', '"*"') 28 shouldBe('sheet.cssRules[0].cssText[0]', '"*"')
29 29
30 debug("Re-adding &lt;style>..."); 30 debug("Re-adding &lt;style>...");
31 shadowRoot.appendChild(style); 31 shadowRoot.appendChild(style);
32 shouldBe('sheet.ownerNode', 'null') 32 shouldBe('sheet.ownerNode', 'null')
33 shouldBe('style.sheet === sheet', 'false') 33 shouldBe('style.sheet === sheet', 'false')
34 shouldBe('style.sheet.ownerNode', 'style') 34 shouldBe('style.sheet.ownerNode', 'style')
35 </script> 35 </script>
36 <script src="../../js/resources/js-test-post.js"></script>
37 </body> 36 </body>
38 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698