Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src='../../resources/testharness.js'></script> | |
| 3 <script src='../../resources/testharnessreport.js'></script> | |
| 4 <div id='p1'><slot><div id='c1'></div></slot></div> | |
| 5 <script> | |
| 6 test(() => { | |
| 7 document.body.offsetLeft; | |
| 8 const doc = document.implementation.createDocument("http://www.w3.org/1999/xht ml", "html"); | |
| 9 doc.adoptNode(c1); | |
| 10 p1.style.display = "none"; | |
| 11 }, "Slots in a document tree should not cause a crash."); | |
| 12 </script> | |
| OLD | NEW |