summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-mochitest/test_webgl2_not_exposed.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/test/webgl-mochitest/test_webgl2_not_exposed.html')
-rw-r--r--dom/canvas/test/webgl-mochitest/test_webgl2_not_exposed.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/dom/canvas/test/webgl-mochitest/test_webgl2_not_exposed.html b/dom/canvas/test/webgl-mochitest/test_webgl2_not_exposed.html
new file mode 100644
index 0000000000..d8d2f54c0d
--- /dev/null
+++ b/dom/canvas/test/webgl-mochitest/test_webgl2_not_exposed.html
@@ -0,0 +1,37 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<title>WebGL test: WebGL2RenderingContext only exposed when appropriate</title>
+<script src='/tests/SimpleTest/SimpleTest.js'></script>
+<link rel='stylesheet' href='/tests/SimpleTest/test.css'>
+</head>
+<body>
+<script>
+
+function ShouldExpose() {
+ try {
+ return SpecialPowers.getBoolPref('webgl.enable-webgl2');
+ } catch (e) {}
+
+ return false;
+}
+
+function DoesExpose() {
+ try {
+ null instanceof WebGL2RenderingContext;
+ return true;
+ } catch (e) {}
+
+ return false;
+}
+
+var doesExpose = DoesExpose();
+if (ShouldExpose()) {
+ ok(doesExpose, 'WebGL2RenderingContext should be exposed.');
+} else {
+ ok(!doesExpose, 'WebGL2RenderingContext should not be exposed.');
+}
+
+</script>
+</body>
+</html>