mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5af5a73d3d
find /files/mozilla/build/d/_tests/testing/mochitest/tests/ | egrep "\.(xhtml|html|xml|js)$" | grep -v SimpleTest | grep -vi mochikit | grep -v simpleThread | grep -v test_ipc_messagemanager_blob.html | grep -v "indexedDB/test" | xargs grep -l Components | xargs grep -L enablePrivilege | perl -pe 's#.*mochitest/tests/##' | xargs perl -p -i.bakkk -e 's/Components\.interfaces(\s|;|\.|\[)/SpecialPowers\.Ci$1/g, s/SpecialPowers\.wrap\(Components\)\.(.)(lasses|tils|nterfaces|esults)/SpecialPowers.C$1/g, s/(?<![\.a-zA-Z])Components/SpecialPowers\.Components/g, s/window\.Components/window\.SpecialPowers\.Components/g'
53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for XMLHttpRequest with system privileges</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body onload="runTests();">
|
|
<p id="display">
|
|
</p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="application/javascript;version=1.8">
|
|
|
|
function runTests() {
|
|
var comp = SpecialPowers.wrap(SpecialPowers.Components);
|
|
SimpleTest.waitForExplicitFinish();
|
|
SpecialPowers.addPermission("systemXHR", true, document);
|
|
|
|
function tearDown() {
|
|
SpecialPowers.removePermission("systemXHR", document);
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
// An XHR with system privileges will be able to do cross-site calls.
|
|
|
|
const TEST_URL = "http://example.com/tests/content/base/test/test_XHR_system.html";
|
|
is(window.location.hostname, "mochi.test");
|
|
|
|
let xhr = new XMLHttpRequest({mozSystem: true});
|
|
is(xhr.mozSystem, true, ".mozSystem == true");
|
|
xhr.open("GET", TEST_URL);
|
|
xhr.onload = function onload() {
|
|
is(xhr.status, 200);
|
|
ok(xhr.responseText != null);
|
|
ok(xhr.responseText.length);
|
|
tearDown();
|
|
};
|
|
xhr.onerror = function onerror() {
|
|
ok(false, "Got an error event!");
|
|
tearDown();
|
|
}
|
|
xhr.send();
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|