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

Side by Side Diff: LayoutTests/fast/dom/shadow/pseudo-attribute-dynamic.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 <style> 4 <style>
6 #host::x-foo { 5 #host::x-foo {
7 color: red; 6 color: red;
8 } 7 }
9 8
10 #host::x-bar { 9 #host::x-bar {
11 color: blue; 10 color: blue;
12 } 11 }
13 </style> 12 </style>
14 </head> 13 </head>
(...skipping 14 matching lines...) Expand all
29 shadowRoot.appendChild(div); 28 shadowRoot.appendChild(div);
30 29
31 setTimeout(function() { 30 setTimeout(function() {
32 div.webkitPseudo = 'x-bar'; 31 div.webkitPseudo = 'x-bar';
33 if (window.testRunner) 32 if (window.testRunner)
34 testRunner.notifyDone(); 33 testRunner.notifyDone();
35 }, 0); 34 }, 0);
36 </script> 35 </script>
37 </body> 36 </body>
38 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698