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

Side by Side Diff: LayoutTests/fast/dom/shadow/reprojection-id-modified.html

Issue 14594006: Remove Internals::createShadowRoot(element) and polyfill.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <body> 4 <body>
5 5
6 <script src="resources/polyfill.js"></script>
7 6
8 <div id="host1"> 7 <div id="host1">
9 <div id="selected">A</div> 8 <div id="selected">A</div>
10 <div>B</div> 9 <div>B</div>
11 <div>C</div> 10 <div>C</div>
12 <div>D</div> 11 <div>D</div>
13 <div>E</div> 12 <div>E</div>
14 <div id="F">F</div> 13 <div id="F">F</div>
15 </div> 14 </div>
16 15
(...skipping 10 matching lines...) Expand all
27 26
28 setTimeout(function() { 27 setTimeout(function() {
29 A = selected; 28 A = selected;
30 A.id = ''; 29 A.id = '';
31 F.id = 'selected'; 30 F.id = 'selected';
32 if (window.testRunner) 31 if (window.testRunner)
33 testRunner.notifyDone(); 32 testRunner.notifyDone();
34 }, 0); 33 }, 0);
35 </script> 34 </script>
36 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698