blob: d8d2f54c0d106d6acccdde861cfdb742be66516b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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>
|