Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / modify-crash.html
bloba724df805dd9c4a168ea26e77e3c28a7f0e36ec7
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
9 window.onload = function () {
10 var oSelection = window.getSelection();
11 document.execCommand('SelectAll');
12 var oRange = oSelection.getRangeAt(0);
13 oRange.deleteContents();
14 oSelection.modify('extend', 'backward', 'paragraph');
16 // Recreate the HTML element to show 'PASS'.
17 document.body.innerHTML = '<body>PASS if not crashed.</body>';
18 if (window.testRunner)
19 testRunner.notifyDone();
21 </script>
22 </head>
23 <body>
25 <optgroup></optgroup>
26 </body>
27 </html>