summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_pasteImgTextarea.html
blob: c19417e4c0654e2d67a8daa70db51e76a69d0590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<img id="i" src="green.png">
<textarea id="t"></textarea>

<script>
let loaded = new Promise(resolve => addLoadEvent(resolve));
    add_task(async function() {
        await loaded;
        SpecialPowers.setCommandNode(window, document.getElementById("i"));
        SpecialPowers.doCommand(window, "cmd_copyImageContents");
        let input = document.getElementById("t");
        input.focus();
        var controller =
          SpecialPowers.wrap(input).controllers.getControllerForCommand("cmd_paste");
        is(controller.isCommandEnabled("cmd_paste"), true,
           "paste should be enabled in html textareas when an image is on the clipboard");
    });
</script>