OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style>.t { color: green }</style> | |
3 <div id="host"> | |
4 <span id="t" class="t">This text should be green.</span> | |
5 </div> | |
6 <script> | |
7 if (window.testRunner) | |
8 testRunner.dumpAsText(); | |
9 | |
10 var root = host.createShadowRoot(); | |
11 root.innerHTML = '<style>::content > * { color: red }</style><content></content> '; | |
12 document.write(getComputedStyle(t).color == "rgb(0, 128, 0)" ? "PASS" : "FAIL"); | |
13 </script> | |
OLD | NEW |