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

Side by Side Diff: LayoutTests/fast/dom/shadow/pseudoclass-update-target.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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="resources/polyfill.js"></script>
5 </head> 4 </head>
6 5
7 <body> 6 <body>
8 7
9 <p>When :target is changed, we have to invalidate distribution.</p> 8 <p>When :target is changed, we have to invalidate distribution.</p>
10 9
11 <div id="host"> 10 <div id="host">
12 <div id="target1">target 1</div> 11 <div id="target1">target 1</div>
13 <div id="target2">target 2</div> 12 <div id="target2">target 2</div>
14 <div id="target3">target 3</div> 13 <div id="target3">target 3</div>
(...skipping 10 matching lines...) Expand all
25 24
26 setTimeout(function() { 25 setTimeout(function() {
27 location.hash = '#target2'; 26 location.hash = '#target2';
28 testRunner.notifyDone(); 27 testRunner.notifyDone();
29 }, 0); 28 }, 0);
30 29
31 </script> 30 </script>
32 </body> 31 </body>
33 </html> 32 </html>
34 33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698