Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / webgl / renderer-and-vendor-strings.html
blob935d1e8b7f6e8233220f99a59b8c468ac8f5259c
1 <head>
2 <script src="../../../resources/js-test.js"></script>
3 <script src="resources/webgl-test.js"></script>
4 </head>
5 <body>
6 <div id="description"></div>
7 <div id="console"></div>
9 <script>
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
21 // specific strings.
23 shouldBe("gl.getParameter(gl.RENDERER)", '"WebKit WebGL"');
24 shouldBe("gl.getParameter(gl.VENDOR)", '"WebKit"');
25 </script>
27 </body>