Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / remove-foramt-mixed-editable-crash.html
blob00274113dc13dd11dbc258a906d53b6007cee98c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 onload = function() {
9 document.execCommand('SelectAll');
10 document.execCommand('RemoveFormat');
11 document.body.textContent = 'PASS if Blink doesn\'t crash.';
13 </script>
14 </head>
15 <body contenteditable="true">
16 <span contenteditable="false"></span><code></code><b><span></span>ab</b>
17 </body>
18 </html>