1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/canvas/test/webgl-mochitest/test_webgl2_not_exposed.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 +<title>WebGL test: WebGL2RenderingContext not exposed</title> 1.8 +<script src="/tests/SimpleTest/SimpleTest.js"></script> 1.9 +<link rel="stylesheet" href="/tests/SimpleTest/test.css"> 1.10 +</head> 1.11 +<body> 1.12 +<script> 1.13 + 1.14 +var exposed = false; 1.15 +try { 1.16 + null instanceof WebGL2RenderingContext; 1.17 + exposed = true; 1.18 +} catch (e) {} 1.19 + 1.20 +ok(!exposed, 'WebGL2RenderingContext should not be exposed.'); 1.21 + 1.22 +</script> 1.23 +</body> 1.24 +</html>