Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / delete-selection-with-non-editable-end-crash.html
blob7ce853193f22759334f5cbeb3a7b9a92389ba551
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 onload = function() {
9 document.replaceChild(document.body.firstElementChild, document.documentElement);
10 var selection = getSelection();
11 document.execCommand('SelectAll');
12 document.getElementById('target').contentEditable = true;
13 document.execCommand('Delete');
14 document.documentElement.textContent = 'PASS if Blink doesn\'t crash.';
16 </script>
17 </head>
18 <body>
19 <div><span id="target">mnop</span>xyz</div>
20 </body>
21 </html>