| <html> | |
| <head> | |
| <script> | |
| function testShouldNotCrash() | |
| { | |
| if (!window.testRunner) | |
| return; | |
| window.testRunner.dumpAsText(); | |
| var host = document.createElement("blockquote"); | |
| var shadow = internals.ensureShadowRoot(host); | |
| var children = shadow.childNodes; | |
| document.body.appendChild(host); | |
| document.body.offsetLeft; | |
| document.body.innerHTML = "PASS unless crash"; | |
| } | |
| </script> | |
| </head> | |
| <body onload="testShouldNotCrash()"> | |
| </body> | |
| </html> |