OLD | NEW |
1 This test passes if it doesn't crash (or ASSERT). | 1 This test passes if it doesn't crash (or ASSERT). |
2 <script> | 2 <script> |
3 if (window.layoutTestController) | 3 if (window.layoutTestController) |
4 layoutTestController.dumpAsText(); | 4 layoutTestController.dumpAsText(); |
5 | 5 |
6 var f = document.createDocumentFragment(); | 6 var f = document.createDocumentFragment(); |
7 var s = document.createElement('div'); | 7 var s = document.createElement('div'); |
8 f.appendChild(s); | 8 f.appendChild(s); |
9 s.insertAdjacentHTML('afterend', "aaa"); | 9 s.insertAdjacentHTML('afterend', "aaa"); |
10 </script> | 10 </script> |
OLD | NEW |