Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / insert-tab-to-html-element-crash.html
blob78d0b16afcd0b2f18a9d0e3015acfee5d9f2f1f8
1 <!DOCTYPE html>
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 onload = function() {
8 getSelection().collapse(document.body, 0);
9 document.body.parentNode.removeChild(document.body);
10 document.designMode = 'on';
11 document.execCommand("InsertText", false, '\t');
12 document.documentElement.textContent = 'PASS if Blink doesn\'t crash.';
14 </script>
15 </head>
16 <body>
17 </body>
18 </html>