2 <script src=
"../../../resources/js-test.js"></script>
3 <script src=
"resources/webgl-test.js"></script>
6 <div id=
"description"></div>
7 <div id=
"console"></div>
10 description("Verifies the contents of the RENDERER and VENDOR strings to avoid regressions.")
12 if (window
.initNonKhronosFramework
)
13 window
.initNonKhronosFramework(false);
15 var gl
= create3DContext();
17 // Consensus in the WebGL working group has been to mask the
18 // underlying hardware's RENDERER and VENDOR strings, which leak a
19 // certain amount of personally identifiable information. This test is
20 // intended only to catch accidental regressions, not to enforce the
23 shouldBe("gl.getParameter(gl.RENDERER)", '"WebKit WebGL"');
24 shouldBe("gl.getParameter(gl.VENDOR)", '"WebKit"');