OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html><body> | 2 <html><body> |
3 <script src="../../js/resources/js-test-pre.js"></script> | 3 <script src="../../../resources/js-test.js"></script> |
4 | 4 |
5 <p>When modifying InsertionPoint's child, distribution should not cause crash.</
p> | 5 <p>When modifying InsertionPoint's child, distribution should not cause crash.</
p> |
6 <p>PASS unless crash.</p> | 6 <p>PASS unless crash.</p> |
7 | 7 |
8 <div id="host"></div> | 8 <div id="host"></div> |
9 <pre id="console"></pre> | 9 <pre id="console"></pre> |
10 | 10 |
11 <script> | 11 <script> |
12 jsTestIsAsync = true; | 12 jsTestIsAsync = true; |
13 | 13 |
(...skipping 20 matching lines...) Expand all Loading... |
34 shadowRoot2.appendChild(details); | 34 shadowRoot2.appendChild(details); |
35 | 35 |
36 var shadow = details.firstChild; | 36 var shadow = details.firstChild; |
37 setTimeout(function() { | 37 setTimeout(function() { |
38 shadow.firstChild.remove(); | 38 shadow.firstChild.remove(); |
39 finishJSTest(); | 39 finishJSTest(); |
40 }, 0); | 40 }, 0); |
41 </script> | 41 </script> |
42 | 42 |
43 </body></html> | 43 </body></html> |
OLD | NEW |