summaryrefslogtreecommitdiff
path: root/testing/firefox-ui/resources/security/enable_privilege.html
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-11-29 17:19:16 -0500
committerMoonchild <moonchild@palemoon.org>2022-04-06 23:28:22 +0200
commit63b8aaa49509ef54628061db640bc0afdf0b5a1a (patch)
treea1a55db5f262bfbb78402251d2b832f75871b1a3 /testing/firefox-ui/resources/security/enable_privilege.html
parent4897e3653a1da346ac7f6f48c77717582e6c9c79 (diff)
downloaduxp-63b8aaa49509ef54628061db640bc0afdf0b5a1a.tar.gz
Issue #1845 - Remove Marionette files
Diffstat (limited to 'testing/firefox-ui/resources/security/enable_privilege.html')
-rw-r--r--testing/firefox-ui/resources/security/enable_privilege.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/testing/firefox-ui/resources/security/enable_privilege.html b/testing/firefox-ui/resources/security/enable_privilege.html
deleted file mode 100644
index 9d18e46848..0000000000
--- a/testing/firefox-ui/resources/security/enable_privilege.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html lang="en" dir="ltr">
- <head>
- <title>Test page for enablePrivilege</title>
- <script>
- function init() {
- var result = document.getElementById("result");
- try {
- netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
- result.textContent = "FAIL";
- }
- catch (ex) {
- result.textContent = "PASS";
- }
- }
- </script>
- </head>
- <body onload="init();">
- <p id="result"></p>
- </body>
-</html>