Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / crash-extend-selection-forward.html
blobfafe52847f9b378483c88dc7abb6c6c183930011
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script src=../editing.js></script>
5 <script>
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
11 function editingTest() {
12 var s = window.getSelection();
13 d = document.getElementById("test1");
14 s.collapse(d, 0);
15 extendSelectionForwardByLineCommand();
17 test1.innerHTML = "PASS. WebKit didn't crash.";
18 if (window.testRunner)
19 testRunner.notifyDone();
21 </script>
22 <pre id="console"></pre>
23 <div id=test1>(required to cause a crash)<object style='content: counters(c, ".") "-"; ' type=text/vbs></object></div>
24 <script>
25 runEditingTest();
26 </script>
27 </body>
28 </html>