Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / format-block-with-uneditable-crash.html
blob3c1a1e403b54b34c35a6589d3e1d253eff4bb58a
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 onload = function() {
9 document.designMode = 'on';
10 document.execCommand('SelectAll');
11 document.execCommand('FormatBlock', false, '<pre>');
12 document.documentElement.textContent = 'PASS if Blink doesn\'t crash.';
14 </script>
15 </head>
16 <body>
17 ab<embed contenteditable="false"></embed>xyz
18 </body>
19 </html>