Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / select-line.html
blob2c59952aa9db54b9a9d512d62b7924c2a3a51f67
1 <p>This tests for a crash when performing selectLine: inside an empty editable div. It cannot be run manually.</p>
2 <div id="div" contenteditable="true"></div>
4 <script>
5 if (window.testRunner)
6 window.testRunner.dumpAsText();
8 var div = document.getElementById("div");
9 var sel = window.getSelection();
11 sel.collapse(div, 0);
12 if (window.testRunner)
13 testRunner.execCommand("SelectLine");
14 </script>