summaryrefslogtreecommitdiffstats
path: root/dom/presentation/tests/mochitest/file_presentation_mixed_security_contexts.html
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-06 16:03:39 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:31:16 +0200
commit8c41fcd24048154e3526e506157d337a2ab434e8 (patch)
treecadcee4433f470969e8e14591f6d7d89c1c9f39b /dom/presentation/tests/mochitest/file_presentation_mixed_security_contexts.html
parent27f4e60be80610b4be361f51257a5501852ed795 (diff)
downloadUXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar.gz
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar.lz
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.tar.xz
UXP-8c41fcd24048154e3526e506157d337a2ab434e8.zip
Issue #1390 - Get rid of the Presentation API
Diffstat (limited to 'dom/presentation/tests/mochitest/file_presentation_mixed_security_contexts.html')
-rw-r--r--dom/presentation/tests/mochitest/file_presentation_mixed_security_contexts.html159
1 files changed, 0 insertions, 159 deletions
diff --git a/dom/presentation/tests/mochitest/file_presentation_mixed_security_contexts.html b/dom/presentation/tests/mochitest/file_presentation_mixed_security_contexts.html
deleted file mode 100644
index f042d2994..000000000
--- a/dom/presentation/tests/mochitest/file_presentation_mixed_security_contexts.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-<!DOCTYPE HTML>
-<html>
-<head>
-<meta charset="utf-8">
-<title>Test allow-presentation sandboxing flag</title>
-<script type="application/javascript;version=1.8">
-
-"use strict";
-
-function is(a, b, msg) {
- window.parent.postMessage((a === b ? "OK " : "KO ") + msg, "*");
-}
-
-function ok(a, msg) {
- window.parent.postMessage((a ? "OK " : "KO ") + msg, "*");
-}
-
-function info(msg) {
- window.parent.postMessage("INFO " + msg, "*");
-}
-
-function command(msg) {
- window.parent.postMessage("COMMAND " + JSON.stringify(msg), "*");
-}
-
-function finish() {
- window.parent.postMessage("DONE", "*");
-}
-
-function testGetAvailability() {
- return new Promise(function(aResolve, aReject) {
- ok(navigator.presentation, "navigator.presentation should be available.");
- var request = new PresentationRequest("http://example.com");
-
- request.getAvailability().then(
- function(aAvailability) {
- ok(false, "Unexpected success, should get a security error.");
- aReject();
- },
- function(aError) {
- is(aError.name, "SecurityError", "Should get a security error.");
- aResolve();
- }
- );
- });
-}
-
-function testStartRequest() {
- return new Promise(function(aResolve, aReject) {
- var request = new PresentationRequest("http://example.com");
-
- request.start().then(
- function(aAvailability) {
- ok(false, "Unexpected success, should get a security error.");
- aReject();
- },
- function(aError) {
- is(aError.name, "SecurityError", "Should get a security error.");
- aResolve();
- }
- );
- });
-}
-
-function testReconnectRequest() {
- return new Promise(function(aResolve, aReject) {
- var request = new PresentationRequest("http://example.com");
-
- request.reconnect("dummyId").then(
- function(aConnection) {
- ok(false, "Unexpected success, should get a security error.");
- aReject();
- },
- function(aError) {
- is(aError.name, "SecurityError", "Should get a security error.");
- aResolve();
- }
- );
- });
-}
-
-function testGetAvailabilityForAboutBlank() {
- return new Promise(function(aResolve, aReject) {
- var request = new PresentationRequest("about:blank");
-
- request.getAvailability().then(
- function(aAvailability) {
- ok(true, "Success due to a priori authenticated URL.");
- aResolve();
- },
- function(aError) {
- ok(false, "Error occurred when getting availability: " + aError);
- aReject();
- }
- );
- });
-}
-
-function testGetAvailabilityForAboutSrcdoc() {
- return new Promise(function(aResolve, aReject) {
- var request = new PresentationRequest("about:srcdoc");
-
- request.getAvailability().then(
- function(aAvailability) {
- ok(true, "Success due to a priori authenticated URL.");
- aResolve();
- },
- function(aError) {
- ok(false, "Error occurred when getting availability: " + aError);
- aReject();
- }
- );
- });
-}
-
-function testGetAvailabilityForDataURL() {
- return new Promise(function(aResolve, aReject) {
- var request = new PresentationRequest("data:text/html,1");
-
- request.getAvailability().then(
- function(aAvailability) {
- ok(true, "Success due to a priori authenticated URL.");
- aResolve();
- },
- function(aError) {
- ok(false, "Error occurred when getting availability: " + aError);
- aReject();
- }
- );
- });
-}
-
-function runTest() {
- testGetAvailability()
- .then(testStartRequest)
- .then(testReconnectRequest)
- .then(testGetAvailabilityForAboutBlank)
- .then(testGetAvailabilityForAboutSrcdoc)
- .then(testGetAvailabilityForDataURL)
- .then(finish);
-}
-
-window.addEventListener("message", function onMessage(evt) {
- window.removeEventListener("message", onMessage);
- if (evt.data === "start") {
- runTest();
- }
-}, false);
-
-window.setTimeout(function() {
- command("ready-to-start");
-}, 3000);
-
-</script>
-</head>
-<body>
-</body>
-</html>