| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> | 2 <meta charset="utf-8"> |
| 3 <title>v0 features should be inert in v1 shadow trees.</title> | 3 <title>v0 features should be inert in v1 shadow trees.</title> |
| 4 <script src='../../../resources/testharness.js'></script> | 4 <script src='../resources/testharness.js'></script> |
| 5 <script src='../../../resources/testharnessreport.js'></script> | 5 <script src='../resources/testharnessreport.js'></script> |
| 6 <script src='resources/shadow-dom.js'></script> | 6 <script src='../fast/dom/shadow/resources/shadow-dom.js'></script> |
| 7 <div id='host'> | 7 <div id='host'> |
| 8 <template data-mode='open'> | 8 <template data-mode='open'> |
| 9 <content></content> | 9 <content></content> |
| 10 <shadow></shadow> | 10 <shadow></shadow> |
| 11 </template> | 11 </template> |
| 12 <div id='child'></div> | 12 <div id='child'></div> |
| 13 </div> | 13 </div> |
| 14 <script> | 14 <script> |
| 15 convertTemplatesToShadowRootsWithin(host); | 15 convertTemplatesToShadowRootsWithin(host); |
| 16 document.body.offsetLeft; | 16 document.body.offsetLeft; |
| 17 test(function () { | 17 test(function () { |
| 18 var content = host.shadowRoot.querySelector('content'); | 18 var content = host.shadowRoot.querySelector('content'); |
| 19 var shadow = host.shadowRoot.querySelector('shadow'); | 19 var shadow = host.shadowRoot.querySelector('shadow'); |
| 20 assert_equals(content.getDistributedNodes().length, 0); | 20 assert_equals(content.getDistributedNodes().length, 0); |
| 21 assert_equals(shadow.getDistributedNodes().length, 0); | 21 assert_equals(shadow.getDistributedNodes().length, 0); |
| 22 }, "insertion points should be inert in v1"); | 22 }, "insertion points should be inert in v1"); |
| 23 </script> | 23 </script> |
| OLD | NEW |