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

Side by Side Diff: LayoutTests/fast/dom/shadow/has-shadow-insertion-point.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 <script> 5 <script>
6 if (!window.internals) 6 if (!window.internals)
7 debug("windows.internals not found!"); 7 debug("windows.internals not found!");
8 else if (!window.internals.hasShadowInsertionPoint) 8 else if (!window.internals.hasShadowInsertionPoint)
9 debug("windows.internals.hasShadowInsertionPoint not found!"); 9 debug("windows.internals.hasShadowInsertionPoint not found!");
10 </script> 10 </script>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 shouldBeTrue('internals.hasShadowInsertionPoint(shadowRoot)'); 79 shouldBeTrue('internals.hasShadowInsertionPoint(shadowRoot)');
80 div2.appendChild(host); 80 div2.appendChild(host);
81 shouldBeTrue('internals.hasShadowInsertionPoint(shadowRoot)'); 81 shouldBeTrue('internals.hasShadowInsertionPoint(shadowRoot)');
82 div2.removeChild(host); 82 div2.removeChild(host);
83 shouldBeTrue('internals.hasShadowInsertionPoint(shadowRoot)'); 83 shouldBeTrue('internals.hasShadowInsertionPoint(shadowRoot)');
84 shadowRoot.removeChild(div1); 84 shadowRoot.removeChild(div1);
85 shouldBeFalse('internals.hasShadowInsertionPoint(shadowRoot)'); 85 shouldBeFalse('internals.hasShadowInsertionPoint(shadowRoot)');
86 div1.removeChild(shadow); 86 div1.removeChild(shadow);
87 87
88 </script> 88 </script>
89 <script src="../../js/resources/js-test-post.js"></script>
90 </body> 89 </body>
91 </html> 90 </html>
92 91
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/has-elementshadow.html ('k') | LayoutTests/fast/dom/shadow/host-pseudo-class.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698