Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / crash-object-cloning.html
blob7d31de0de1f6a50c03747efe62d7434b04632086
1 <!DOCTYPE html>
2 <html>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 window.onload = function() {
8 document.execCommand("SelectAll");
9 document.execCommand("Indent");
10 document.body.innerHTML = "This test passes if it doesn't crash";
12 </script>
13 <body contenteditable>
14 <object>
15 Any fallback
16 </object>
17 </body>
18 </html>