Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / inserting / insert-text-into-empty-frameset-crash.html
blob6f81e378ecb951e2f2eb48c131f841abbb6e7191
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
6 window.onload = function() {
7 document.designMode="on";
8 document.execCommand("selectall");
9 document.execCommand("InsertText", false);
10 document.open();
11 document.write("This test ensures that selecting all and inserting text into a page with a frameset does not crash<br><br>PASS");
13 </script>
14 <frameset><frame></frame></frameset>
15 </html>