OLD | NEW |
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 Loading... |
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> |
OLD | NEW |