diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /dom/canvas/test/test_offscreencanvas_serviceworker.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/canvas/test/test_offscreencanvas_serviceworker.html')
-rw-r--r-- | dom/canvas/test/test_offscreencanvas_serviceworker.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dom/canvas/test/test_offscreencanvas_serviceworker.html b/dom/canvas/test/test_offscreencanvas_serviceworker.html new file mode 100644 index 0000000000..887b94fc6d --- /dev/null +++ b/dom/canvas/test/test_offscreencanvas_serviceworker.html @@ -0,0 +1,52 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>WebGL in OffscreenCanvas</title> +<script src="/tests/SimpleTest/SimpleTest.js"></script> +<link rel="stylesheet" href="/tests/SimpleTest/test.css"> +</head> +<body> +<script> + +SimpleTest.waitForExplicitFinish(); + +function runTest() { + var registration; + + window.onmessage = function(evt) { + var msg = evt.data || {}; + if (msg.type == "test") { + ok(msg.result, msg.name); + } + if (msg.type == "finish") { + registration.unregister().then(function() { + SimpleTest.finish(); + }); + } + } + + navigator.serviceWorker.register('offscreencanvas.js', { scope: "."}) + // Wait until the service worker is active. + .then(function(swr) { + registration = swr; + return navigator.serviceWorker.ready; + }) + // ...and then show the interface for the commands once it's ready. + .then(function() { + iframe = document.createElement("iframe"); + iframe.setAttribute('src', "offscreencanvas_serviceworker_inner.html"); + document.body.appendChild(iframe); + }) +} + +SpecialPowers.pushPrefEnv({'set': [ + ['gfx.offscreencanvas.enabled', true], + ['webgl.force-enabled', true], + ["dom.serviceWorkers.exemptFromPerDomainMax", true], + ["dom.serviceWorkers.enabled", true], + ["dom.serviceWorkers.testing.enabled", true] +]}, runTest); + +</script> +</body> +</html> |