| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="resources/shadow-dom.js"></script> | |
| 5 <script src="../../../resources/js-test.js"></script> | |
| 6 </head> | |
| 7 <body class="bodyClass"> | |
| 8 | |
| 9 <template id="tmpl"> | |
| 10 <style> | |
| 11 :host > .blue { | |
| 12 color: blue; | |
| 13 } | |
| 14 :host content /content/ * { | |
| 15 color: red; | |
| 16 } | |
| 17 </style> | |
| 18 <div class="blue">I am blue!</div> | |
| 19 <content></content> | |
| 20 </template> | |
| 21 | |
| 22 <div id="host" class="hostClass"> | |
| 23 <div class="content"> | |
| 24 content | |
| 25 </div> | |
| 26 </div> | |
| 27 | |
| 28 <pre id="console"></pre> | |
| 29 </body> | |
| 30 <script> | |
| 31 description("Test for crbug.com/274063, cannot style /content/ with a rule that
includes :host."); | |
| 32 | |
| 33 var host = document.querySelector('#host'); | |
| 34 var root = host.createShadowRoot(); | |
| 35 var template = document.querySelector('#tmpl'); | |
| 36 root.appendChild(template.content); | |
| 37 | |
| 38 shouldBe('window.getComputedStyle(document.querySelector("#host > .content")).co
lor', '"rgb(255, 0, 0)"'); | |
| 39 </script> | |
| 40 </html> | |
| OLD | NEW |