mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
f4b598bf08
This patch does the following: * It adds nsITransferable::Init(nsILoadContext*). The load context might be null, which means that the transferable is non-private, but if it's non-null, we extract the boolean value for the privacy mode and store it in the transferable. * It adds checks in debug builds to make sure that Init is always called, in form of fatal assertions. * It adds nsIDOMDocument* agruments to nsIClipboardHelper methods which represent the document that the string is coming from. nsIClipboardHelper implementation internally gets the nsILoadContext from that and passes it on to the transferable upon creation. The reason that I did this was that nsIClipboardHelper is supposed to be a high-level helper, and in most of its call sites, we have easy access to a document object. * It modifies all of the call sites of the above interfaces according to this change. * It adds a GetLoadContext helper to nsIDocument to help with changing the call sites.
52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=681229
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 681229</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/WindowSnapshot.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=681229">Mozilla Bug 681229</a>
|
|
<p id="display"></p>
|
|
<div id="content">
|
|
<textarea spellcheck="false"></textarea>
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 681229 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
SimpleTest.waitForFocus(function() {
|
|
var t = document.querySelector("textarea");
|
|
t.focus();
|
|
|
|
const kValue = "a\r\nb";
|
|
const kExpectedValue = (navigator.platform.indexOf("Win") == 0) ?
|
|
"a\nb" : kValue;
|
|
|
|
SimpleTest.waitForClipboard(kExpectedValue,
|
|
function() {
|
|
SpecialPowers.copyString(kValue, document);
|
|
},
|
|
function() {
|
|
synthesizeKey("V", {accelKey: true});
|
|
is(t.value, "a\nb", "The carriage return has been correctly sanitized");
|
|
SimpleTest.finish();
|
|
},
|
|
function() {
|
|
SimpleTest.finish();
|
|
}
|
|
);
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|