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

Side by Side Diff: LayoutTests/fast/dom/shadow/getelementbyid-in-orphan.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 <body> 3 <body>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 5
6 <div id="wrapper"></div> 6 <div id="wrapper"></div>
7 <pre id="console"></pre> 7 <pre id="console"></pre>
8 8
9 <script> 9 <script>
10 function createDivWithId(id) 10 function createDivWithId(id)
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 debug('Add a child and make the host not in document'); 71 debug('Add a child and make the host not in document');
72 var shadowChild5 = createDivWithId('child5'); 72 var shadowChild5 = createDivWithId('child5');
73 shadowRoot.appendChild(shadowChild5); 73 shadowRoot.appendChild(shadowChild5);
74 wrapper.removeChild(host); 74 wrapper.removeChild(host);
75 75
76 shouldBe('shadowRoot.getElementById("child5")', 'shadowChild5'); 76 shouldBe('shadowRoot.getElementById("child5")', 'shadowChild5');
77 77
78 debug(''); 78 debug('');
79 wrapper.innerHTML = ""; 79 wrapper.innerHTML = "";
80 </script> 80 </script>
81 <script src="../../js/resources/js-test-post.js"></script>
82 </body> 81 </body>
83 </html> 82 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698