mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE HTML>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
/* globals privilegedFetch, privilegedXHR */
|
||||
/* eslint-disable mozilla/balanced-listeners */
|
||||
|
||||
addEventListener("message", function rcv(event) {
|
||||
removeEventListener("message", rcv, false);
|
||||
|
||||
function assertTrue(condition, description) {
|
||||
postMessage({msg: "assertTrue", condition, description}, "*");
|
||||
}
|
||||
|
||||
function passListener() {
|
||||
assertTrue(true, "Content XHR has no elevated privileges");
|
||||
postMessage({"msg": "finish"}, "*");
|
||||
}
|
||||
|
||||
function failListener() {
|
||||
assertTrue(false, "Content XHR has no elevated privileges");
|
||||
postMessage({"msg": "finish"}, "*");
|
||||
}
|
||||
|
||||
try {
|
||||
new privilegedXHR();
|
||||
assertTrue(false, "Content should not have access to privileged XHR constructor");
|
||||
} catch (e) {
|
||||
assertTrue(/Permission denied to access object/.test(e), "Content should not have access to privileged XHR constructor");
|
||||
}
|
||||
|
||||
try {
|
||||
new privilegedFetch();
|
||||
assertTrue(false, "Content should not have access to privileged fetch() constructor");
|
||||
} catch (e) {
|
||||
assertTrue(/Permission denied to access object/.test(e), "Content should not have access to privileged fetch() constructor");
|
||||
}
|
||||
|
||||
let req = new XMLHttpRequest();
|
||||
req.addEventListener("load", failListener);
|
||||
req.addEventListener("error", passListener);
|
||||
req.open("GET", "http://example.org/example.txt");
|
||||
req.send();
|
||||
}, false);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue