forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1271119 - Port test_bug490879.xul from chrome to plain; r=masayuki
Possible issue: the previous version saved document.popupNode and restored it after copying the image, and the new version does not (because I don't know how). The test seems to pass anyway. It seems I had to use doCommand instead of execCommand to carry out the paste, presumably because of permissions differences between plain and chrome mochitests. MozReview-Commit-ID: CdPUCmEtgwO
- Loading branch information
Showing
4 changed files
with
48 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!doctype html> | ||
<title>Mozilla Bug 490879</title> | ||
<link rel=stylesheet href="/tests/SimpleTest/test.css"> | ||
<script src="/tests/SimpleTest/SimpleTest.js"></script> | ||
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490879" | ||
target="_blank">Mozilla Bug 490879</a> | ||
<iframe id="i1" width="200" height="100" src="about:blank"></iframe> | ||
<img id="i" src="green.png"> | ||
<script> | ||
function runTest() { | ||
function verifyContent() { | ||
const kExpectedImgSpec = "data:image/png;base64,"; | ||
var e = document.getElementById('i1'); | ||
var doc = e.contentDocument; | ||
is(doc.getElementsByTagName("img")[0].src.substring(0, kExpectedImgSpec.length), | ||
kExpectedImgSpec, "The pasted image is a base64-encoded data: URI"); | ||
} | ||
|
||
function pasteInto() { | ||
var e = document.getElementById('i1'); | ||
var doc = e.contentDocument; | ||
doc.designMode = "on"; | ||
doc.defaultView.focus(); | ||
var selection = doc.defaultView.getSelection(); | ||
selection.removeAllRanges(); | ||
selection.selectAllChildren(doc.body); | ||
selection.collapseToEnd(); | ||
SpecialPowers.doCommand(window, "cmd_paste"); | ||
} | ||
|
||
function copyToClipBoard() { | ||
SpecialPowers.setCommandNode(window, document.getElementById("i")); | ||
SpecialPowers.doCommand(window, "cmd_copyImageContents"); | ||
} | ||
|
||
copyToClipBoard(); | ||
pasteInto(); | ||
verifyContent(); | ||
|
||
SimpleTest.finish(); | ||
} | ||
|
||
SimpleTest.waitForExplicitFinish(); | ||
addLoadEvent(runTest); | ||
</script> |
This file was deleted.
Oops, something went wrong.