Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-head-crash.html
blob4c6570aa894fc8ac44e48d514aded1f0bc53ce2f
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 head {
6 display: table-caption;
7 height: 100px;
8 width: 100px;
9 background-color: red;
11 </style>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
16 onload = function() {
17 document.designMode = 'on';
18 document.execCommand('SelectAll');
19 document.execCommand('Indent');
20 document.open();
21 document.write('PASS if Blink doesn\'t crash.');
23 </script>
24 </head>
25 <body>
26 foo
27 </body>
28 </html>