Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / 4776665.html
blobef63c376a1a3614d92c3eb2f8f06789892028ebc
1 <script>
2 if (window.testRunner) {
3 testRunner.dumpEditingCallbacks();
4 window.testRunner.waitUntilDone();
7 function runTest() {
8 var frame = frames[0];
9 var doc = frame.document;
10 var body = doc.body;
11 var sel = frame.getSelection();
12 sel.collapse(body, 0);
13 if (window.testRunner)
14 window.testRunner.notifyDone();
16 </script>
17 <p>This tests for a caret painting bug. You should not see a caret in the editable subframe below.</p>
18 <iframe src="../resources/contenteditable-iframe-src.html" onload="runTest();"></iframe>