summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_pasteImgTextarea.html
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-04-22 10:13:13 +0200
committerGitHub <noreply@github.com>2018-04-22 10:13:13 +0200
commitc74754d23864569956853c1f77a37275842b0fd0 (patch)
treec858bde1c123fd2c73935d8cb811a6be364daf81 /editor/libeditor/tests/test_pasteImgTextarea.html
parentcbe93351ee1d924090fc689f85c657c3e1aac41d (diff)
parent306690e137c2bb031020ba3c2c1515ba731a23a5 (diff)
downloadUXP-c74754d23864569956853c1f77a37275842b0fd0.tar
UXP-c74754d23864569956853c1f77a37275842b0fd0.tar.gz
UXP-c74754d23864569956853c1f77a37275842b0fd0.tar.lz
UXP-c74754d23864569956853c1f77a37275842b0fd0.tar.xz
UXP-c74754d23864569956853c1f77a37275842b0fd0.zip
Merge pull request #225 from janekptacijarabaci/data-transfer_1
moebius#56: DataTransfer - Pasting image from clipboard fails in some cases
Diffstat (limited to 'editor/libeditor/tests/test_pasteImgTextarea.html')
-rw-r--r--editor/libeditor/tests/test_pasteImgTextarea.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/editor/libeditor/tests/test_pasteImgTextarea.html b/editor/libeditor/tests/test_pasteImgTextarea.html
new file mode 100644
index 000000000..3168ae729
--- /dev/null
+++ b/editor/libeditor/tests/test_pasteImgTextarea.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<script src="/tests/SimpleTest/SpawnTask.js"></script>
+<img id="i" src="green.png">
+<textarea id="t"></textarea>
+
+<script>
+let loaded = new Promise(resolve => addLoadEvent(resolve));
+ add_task(function*() {
+ yield 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>