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