Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / text-iterator / find-after-mutation.html
blobbbfaa577840ee0f58d2d4488fdbe5d32ca238b96
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function runTest() {
7 if (window.testRunner)
8 testRunner.dumpAsText();
10 document.body.offsetHeight;
11 document.body.innerHTML = " ";
12 window.find('a');
14 document.body.innerHTML = 'PASS - WebKit did not crash';
16 </script>
17 </head>
18 <body onload="runTest()">
20 </body>
21 </html>