mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
60 lines
2.0 KiB
HTML
60 lines
2.0 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
-->
|
|
<head>
|
|
<title>Test for copy image</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=518249">Mozilla Bug 518249</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
function testCopyImage () {
|
|
// selection of the node
|
|
var node = document.getElementById('logo');
|
|
var webnav = SpecialPowers.wrap(window)
|
|
.QueryInterface(SpecialPowers.Ci.nsIInterfaceRequestor)
|
|
.getInterface(SpecialPowers.Ci.nsIWebNavigation)
|
|
|
|
var docShell = webnav.QueryInterface(SpecialPowers.Ci.nsIDocShell);
|
|
|
|
docShell.chromeEventHandler.ownerDocument.popupNode = node;
|
|
|
|
// let's copy the node
|
|
var documentViewer = docShell.contentViewer
|
|
.QueryInterface(SpecialPowers.Ci.nsIContentViewerEdit);
|
|
documentViewer.copyImage(documentViewer.COPY_IMAGE_ALL);
|
|
|
|
//--------- now check the content of the clipboard
|
|
var clipboard = SpecialPowers.Cc["@mozilla.org/widget/clipboard;1"]
|
|
.getService(SpecialPowers.Ci.nsIClipboard);
|
|
|
|
// does the clipboard contain text/unicode data ?
|
|
ok(clipboard.hasDataMatchingFlavors(["text/unicode"], 1, clipboard.kGlobalClipboard), "clipboard contains unicode text");
|
|
// does the clipboard contain text/html data ?
|
|
ok(clipboard.hasDataMatchingFlavors(["text/html"], 1, clipboard.kGlobalClipboard), "clipboard contains html text");
|
|
// does the clipboard contain image data ?
|
|
ok(clipboard.hasDataMatchingFlavors(["image/png"], 1, clipboard.kGlobalClipboard), "clipboard contains image");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addLoadEvent(testCopyImage);
|
|
|
|
</script>
|
|
</pre>
|
|
<div>
|
|
<img id="logo" src="about:logo">
|
|
</div>
|
|
</body>
|
|
</html>
|