OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta name='author' title='Google' href='http://www.google.com'> | 4 <meta name='author' title='Google' href='http://www.google.com'> |
5 <meta name='assert' content='document attributes that returns HTMLCollection sho
uld not expose nodes in shadow tree.'> | 5 <meta name='assert' content='document attributes that returns HTMLCollection sho
uld not expose nodes in shadow tree.'> |
6 <link rel='help' href='https://w3c.github.io/webcomponents/spec/shadow/'> | 6 <link rel='help' href='https://w3c.github.io/webcomponents/spec/shadow/'> |
7 <script src='/resources/testharness.js'></script> | 7 <script src='/resources/testharness.js'></script> |
8 <script src='/resources/testharnessreport.js'></script> | 8 <script src='/resources/testharnessreport.js'></script> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
11 <template id='collection-template'> | 11 <template id='collection-template'> |
12 <img> | 12 <img> |
13 <embed></embed> | 13 <embed></embed> |
14 <plugin></plugin> | |
15 <applet></applet> | 14 <applet></applet> |
16 <object type='application/x-java-applet'></object> | 15 <object type='application/x-java-applet'></object> |
17 <a href='http://example.com'></a> | 16 <a href='http://example.com'></a> |
18 <a name='test'></a> | 17 <a name='test'></a> |
19 <form name='test'></form> | 18 <form name='test'></form> |
20 <script></script> | 19 <script></script> |
21 </template> | 20 </template> |
22 <div id='doc'></div> | 21 <div id='doc'></div> |
23 <div id='host-open'></div> | 22 <div id='host-open'></div> |
24 <div id='host-closed'></div> | 23 <div id='host-closed'></div> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 ['document.links should not contain shadow nodes', 'links'], | 67 ['document.links should not contain shadow nodes', 'links'], |
69 ['document.anchors should not contain shadow nodes', 'anchors'], | 68 ['document.anchors should not contain shadow nodes', 'anchors'], |
70 ['document.embeds should not contain shadow nodes', 'embeds'], | 69 ['document.embeds should not contain shadow nodes', 'embeds'], |
71 ['document.plugins should not contain shadow nodes', 'plugins'], | 70 ['document.plugins should not contain shadow nodes', 'plugins'], |
72 ['document.applets should not contain shadow nodes', 'applets']]; | 71 ['document.applets should not contain shadow nodes', 'applets']]; |
73 | 72 |
74 generate_tests(testCollection, testParams); | 73 generate_tests(testCollection, testParams); |
75 | 74 |
76 </script> | 75 </script> |
77 </html> | 76 </html> |
OLD | NEW |