2017-01-27 02:24:00 +03:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=795418
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Test for Bug 795418</title>
|
2019-04-16 06:50:44 +03:00
|
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
2017-01-27 02:24:00 +03:00
|
|
|
<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=795418">Mozilla Bug 795418</a>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="copySource">Copy this</div>
|
|
|
|
<div id="editable" contenteditable><span>AB</span></div>
|
|
|
|
|
|
|
|
<pre id="test">
|
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
|
|
|
|
/** Test for Bug 795418 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
SimpleTest.waitForFocus(function() {
|
|
|
|
var div = document.getElementById("copySource");
|
|
|
|
var sel = window.getSelection();
|
|
|
|
sel.removeAllRanges();
|
|
|
|
|
|
|
|
// Select the text from the text node in div.
|
|
|
|
var r = document.createRange();
|
|
|
|
r.setStart(div.firstChild, 0);
|
|
|
|
r.setEnd(div.firstChild, 9);
|
|
|
|
sel.addRange(r);
|
|
|
|
|
2019-12-27 17:02:35 +03:00
|
|
|
SimpleTest.waitForClipboard(
|
|
|
|
aData => {
|
|
|
|
// XXX Oddly, specifying `r.toString()` causes timeout in headless mode.
|
|
|
|
info(`copied text: "${aData}"`);
|
|
|
|
return true;
|
|
|
|
},
|
2017-12-07 16:39:50 +03:00
|
|
|
function setup() {
|
|
|
|
synthesizeKey("C", {accelKey: true});
|
|
|
|
},
|
|
|
|
function onSuccess() {
|
2017-01-27 02:24:00 +03:00
|
|
|
var theEdit = document.getElementById("editable");
|
|
|
|
sel.collapse(theEdit.firstChild, 1);
|
|
|
|
|
|
|
|
SpecialPowers.doCommand(window, "cmd_pasteQuote");
|
|
|
|
is(theEdit.innerHTML,
|
|
|
|
"<span>AB<blockquote type=\"cite\">Copy this</blockquote></span>",
|
|
|
|
"unexpected HTML for test");
|
2017-12-07 16:39:50 +03:00
|
|
|
|
2017-01-27 02:24:00 +03:00
|
|
|
SimpleTest.finish();
|
|
|
|
},
|
|
|
|
function onFailure() {
|
|
|
|
SimpleTest.finish();
|
|
|
|
},
|
|
|
|
"text/html"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|