summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/test_offscreencanvas_neuter.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/canvas/test/test_offscreencanvas_neuter.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/canvas/test/test_offscreencanvas_neuter.html')
-rw-r--r--dom/canvas/test/test_offscreencanvas_neuter.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/dom/canvas/test/test_offscreencanvas_neuter.html b/dom/canvas/test/test_offscreencanvas_neuter.html
new file mode 100644
index 000000000..2af080c7c
--- /dev/null
+++ b/dom/canvas/test/test_offscreencanvas_neuter.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<title>OffscreenCanvas: Test neutering</title>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<link rel="stylesheet" href="/tests/SimpleTest/test.css">
+</head>
+<body>
+<canvas id="c" width="64" height="64"></canvas>
+<script>
+
+SimpleTest.waitForExplicitFinish();
+
+function runTest() {
+
+ var htmlCanvas = document.getElementById("c");
+ var worker = new Worker("offscreencanvas_neuter.js");
+
+ ok(htmlCanvas, "Should have HTML canvas element");
+ ok(worker, "Web worker successfully created");
+
+ ok(htmlCanvas.transferControlToOffscreen, "HTMLCanvasElement has transferControlToOffscreen function");
+
+ var offscreenCanvas = htmlCanvas.transferControlToOffscreen();
+ ok(offscreenCanvas, "Expected transferControlToOffscreen to succeed");
+
+ /* check html canvas is neuterd */
+ is(htmlCanvas.width, 64, "HTML canvas has correct width");
+ SimpleTest.doesThrow(
+ function() { htmlCanvas.width = 128; },
+ "Can't change html canvas' width after transferControlToOffscreen");
+
+ SimpleTest.doesThrow(
+ function() { htmlCanvas.height = 128; },
+ "Can't change html canvas' height after transferControlToOffscreen");
+
+ ok(!htmlCanvas.getContext("2d"), "Can't getContext after transferControlToOffscreen");
+ ok(!htmlCanvas.getContext("webgl"), "Can't getContext after transferControlToOffscreen");
+ ok(!htmlCanvas.getContext("webgl2"), "Can't getContext after transferControlToOffscreen");
+
+ worker.postMessage(offscreenCanvas, [offscreenCanvas]);
+
+ /* check parent offscreencanvas is neutered after being transfered */
+ SimpleTest.doesThrow(
+ function() { offscreenCanvas.width = 128; },
+ "Can't change transfered worker canvas width");
+
+ SimpleTest.doesThrow(
+ function() { offscreenCanvas.height = 128; },
+ "Can't change transfered worker canvas height");
+
+ SimpleTest.doesThrow(
+ function() { offscreenCanvas.getContext("2d") },
+ "Can't getContext on transfered worker canvas");
+
+ SimpleTest.doesThrow(
+ function() { offscreenCanvas.getContext("webgl") },
+ "Can't getContext on transfered worker canvas");
+
+ SimpleTest.doesThrow(
+ function() { offscreenCanvas.getContext("webgl2") },
+ "Can't getContext on transfered worker canvas");
+
+ // Transfer a neutered offscreencanvas should be ok.
+ worker.postMessage(offscreenCanvas, [offscreenCanvas]);
+
+ worker.terminate();
+ SimpleTest.finish();
+}
+
+SpecialPowers.pushPrefEnv({'set': [
+ ['gfx.offscreencanvas.enabled', true],
+ ['webgl.force-enabled', true],
+]}, runTest);
+
+</script>
+</body>
+</html>