moebius#56: Fix: DataTransfer - Pasting image from clipboard fails in some cases

https://github.com/MoonchildProductions/moebius/pull/56
This commit is contained in:
janekptacijarabaci 2018-04-20 22:54:26 +02:00 committed by Roy Tam
commit 37c73e0634
13 changed files with 156 additions and 44 deletions

View file

@ -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>