summaryrefslogtreecommitdiffstats
path: root/toolkit/components/resistfingerprinting/tests/browser/scriptExecPage.html
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/resistfingerprinting/tests/browser/scriptExecPage.html')
-rw-r--r--toolkit/components/resistfingerprinting/tests/browser/scriptExecPage.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/toolkit/components/resistfingerprinting/tests/browser/scriptExecPage.html b/toolkit/components/resistfingerprinting/tests/browser/scriptExecPage.html
new file mode 100644
index 0000000000..324cc2f261
--- /dev/null
+++ b/toolkit/components/resistfingerprinting/tests/browser/scriptExecPage.html
@@ -0,0 +1,37 @@
+<html>
+<head>
+ <title>A content page for executing script!</title>
+ <script type="text/javascript" src="https://example.com/browser/toolkit/components/resistfingerprinting/tests/browser/testHelpers.js"></script>
+</head>
+<body>
+<h1>Here the content!</h1>
+<script>
+
+function info(msg) {
+ window.postMessage({ type: "info", msg }, "*");
+}
+
+function ok(what, msg) {
+ window.postMessage({ type: "ok", what: !!what, msg }, "*");
+}
+
+function is(a, b, msg) {
+ ok(a === b, msg);
+}
+
+onmessage = async function(e) {
+ if (!e.data.callback) {
+ return;
+ }
+ let data = e.data.callback;
+ let runnableStr = `(() => {return (${data});})();`;
+ let runnable = eval(runnableStr); // eslint-disable-line no-eval
+
+ await runnable.call(this, this, window);
+
+ window.postMessage({ type: "finish" }, "*");
+};
+
+</script>
+</body>
+</html>