OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src='../../../resources/testharness.js'></script> | 2 <script src='../resources/testharness.js'></script> |
3 <script src='../../../resources/testharnessreport.js'></script> | 3 <script src='../resources/testharnessreport.js'></script> |
4 <script src='resources/shadow-dom.js'></script> | 4 <script src='../fast/dom/shadow/resources/shadow-dom.js'></script> |
5 <div id='d1'> | 5 <div id='d1'> |
6 <template data-mode='open' data-expose-as='d1_shadow'> | 6 <template data-mode='open' data-expose-as='d1_shadow'> |
7 <div id='d1-d1'> | 7 <div id='d1-d1'> |
8 <template data-mode='open' data-expose-as='d1_d1_shadow'> | 8 <template data-mode='open' data-expose-as='d1_d1_shadow'> |
9 <slot name='d1-d1-s1'></slot> | 9 <slot name='d1-d1-s1'></slot> |
10 </template> | 10 </template> |
11 <slot name='d1-s1' slot='d1-d1-s1'></slot> | 11 <slot name='d1-s1' slot='d1-d1-s1'></slot> |
12 </div> | 12 </div> |
13 </template> | 13 </template> |
14 </div> | 14 </div> |
(...skipping 12 matching lines...) Expand all Loading... |
27 assert_array_equals(d1_d1_s1.getAssignedNodes({'flatten': true}), []); | 27 assert_array_equals(d1_d1_s1.getAssignedNodes({'flatten': true}), []); |
28 | 28 |
29 const d1_d2 = document.createElement('div'); | 29 const d1_d2 = document.createElement('div'); |
30 d1_d2.setAttribute('id', 'd1-d2'); | 30 d1_d2.setAttribute('id', 'd1-d2'); |
31 d1_s1.appendChild(d1_d2); | 31 d1_s1.appendChild(d1_d2); |
32 | 32 |
33 assert_array_equals(d1_s1.getAssignedNodes({'flatten': true}), [d1_d2]); | 33 assert_array_equals(d1_s1.getAssignedNodes({'flatten': true}), [d1_d2]); |
34 assert_array_equals(d1_d1_s1.getAssignedNodes({'flatten': true}), [d1_d2]); | 34 assert_array_equals(d1_d1_s1.getAssignedNodes({'flatten': true}), [d1_d2]); |
35 }, "Distribution should be updated after mutating fallback contents"); | 35 }, "Distribution should be updated after mutating fallback contents"); |
36 </script> | 36 </script> |
OLD | NEW |