blob: 3877e339894c6c94936fd9fbbc0f067d6ec55f40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<script>
if (window.testRunner)
testRunner.dumpEditingCallbacks();
function foo() {
var frame = frames[0];
var sel = frame.getSelection();
var doc = frame.document;
sel.collapse(doc.body, 0);
doc.execCommand("InsertText", false, "foo bar baz");
sel.modify("extend", "backward", "word");
doc.execCommand("Cut");
doc.execCommand("Paste");
if (window.testRunner)
window.testRunner.notifyDone();
}
if (window.testRunner)
window.testRunner.waitUntilDone();
</script>
<p>This tests cut/paste inside an editable iframe. You should see 'foo bar baz' below.</p>
<iframe src="../resources/contenteditable-iframe-src.html" onload="foo();"></iframe>
|