Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / remove-format-with-non-html-element-crash.html
blob8689434e332144b8dcbf67abbb86e2adfb0651b0
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 object, nothtmlelement {
6 display: table-cell;
8 </style>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
13 onload = function() {
14 var element = document.createElementNS('http://foo', 'nothtmlelement');
15 document.body.appendChild(element);
16 document.execCommand('SelectAll');
17 document.execCommand('RemoveFormat');
18 document.documentElement.textContent = 'PASS if Blink doesn\'t crash.';
20 </script>
21 </head>
22 <html>
23 <body contenteditable="true">
24 <object>a</object>
25 </body>
26 </html>