blob: b4d1407f9dc4a8ca0275b10f30aa87f1fe996882 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>WebGL test: 'webgl' context request</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<script src="webgl-util.js"></script>
</head>
<body>
<canvas id="c"></canvas>
<script>
var gl = WebGLUtil.getWebGL('c', true);
var isMobile = /Mobile/.test(navigator.userAgent);
var isTablet = /Tablet/.test(navigator.userAgent);
var shouldBeConformant = !isMobile && !isTablet;
if (shouldBeConformant) {
// Desktop.
ok(gl, 'Expected conformance on: ' + navigator.userAgent);
} else {
// Fennec, B2G.
ok(!gl, 'Expected no conformance on: ' + navigator.userAgent);
}
</script>
</body>
</html>
|