Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / outdent-inline-blockquote.html
blob29a7f830c1556c60f3dc75457c50f37df96bff55
1 <html>
2 <body contenteditable="true">
3 <br>
4 <blockquote id="test" style="display: inline">Executing Outdent on an inline blockquote that is not the first element in the document should not crash.</blockquote>
5 <p id="console"></p>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
10 function log(message) {
11 var console = document.getElementById("console");
12 var text = document.createTextNode(message);
13 console.appendChild(text);
16 var s = window.getSelection();
17 var p1 = document.getElementById("test");
18 s.collapse(p1, 0);
19 document.execCommand("Outdent", false, 0);
20 log("Test passed: no crash");
22 </script>
23 </body>
24 </html>