haikuwebkit/LayoutTests/fast/canvas/webgl/webgl-unprefixed-context-id...

19 lines
469 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/js-test.js"></script>
<script src="resources/webgl-test.js"></script>
</head>
<body>
<canvas id="c"></canvas>
<script>
description("This test checks to ensure that a webgl context can be created with the 'webgl' context ID");
var c = document.getElementById("c");
var gl = c.getContext("webgl");
if (!gl)
testFailed("context does not exist");
else
testPassed("context exists");
</script>
</body>
</html>