Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / justify-center-empty-list-crash.html
blob760f54d28b5350573dac0173529857542da1e485
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 onload = function() {
9 document.designMode = "on";
10 document.execCommand("SelectAll");
11 document.execCommand("JustifyCenter");
12 document.body.textContent = 'PASS if Blink doesn\'t crash.';
14 </script>
15 </head>
16 <body>
17 <ul style="height: 20px;"></ul>
18 <div>
19 <div></div>
20 <a target="foo">more</a>
21 </div>
22 </body>
23 </html>