OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 <script src="resources/shadow-dom.js"></script> | 5 <script src="resources/shadow-dom.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <div id='sandbox'></div> | 8 <div id='sandbox'></div> |
9 <pre id='console'></pre> | 9 <pre id='console'></pre> |
10 </body> | 10 </body> |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 createShadowRoot( | 74 createShadowRoot( |
75 createDOM('shadow', {}))), | 75 createDOM('shadow', {}))), |
76 document.createTextNode('child of target')))); | 76 document.createTextNode('child of target')))); |
77 | 77 |
78 debug('Test when one of shadow roots which are not out of compositing has apply-
author-styles true'); | 78 debug('Test when one of shadow roots which are not out of compositing has apply-
author-styles true'); |
79 shouldHaveBorderColor('host/target', 'rgb(0, 128, 0)'); | 79 shouldHaveBorderColor('host/target', 'rgb(0, 128, 0)'); |
80 | 80 |
81 cleanUp(); | 81 cleanUp(); |
82 | 82 |
83 </script> | 83 </script> |
84 <script src="../../js/resources/js-test-post.js"></script> | |
85 </html> | 84 </html> |
OLD | NEW |