Skip to content
All fingerprint checksRender & GPU

WebGL parameters return the JavaScript types the specification assigns them

Check id webgl-param-value-types

What an ordinary browser yields

Each probed parameter comes back as the type the specification assigns it — typed arrays as typed arrays, not plain arrays.

What a detector infers

getParameter does not return loose values: the WebGL specification fixes the JavaScript TYPE of each one. MAX_VIEWPORT_DIMS and SCISSOR_BOX come back as Int32Array, ALIASED_LINE_WIDTH_RANGE and COLOR_CLEAR_VALUE as Float32Array, VERSION as a string, DEPTH_WRITEMASK as a boolean, COLOR_WRITEMASK as a plain array of four booleans. Those types are produced by the implementation, and a page that rewrites the parameter table in JavaScript almost never reproduces them — an override table naturally holds array literals and numbers, so a spoofed MAX_VIEWPORT_DIMS arrives as Array where every real driver on earth gives Int32Array. The check is entirely independent of the values: the numbers may be whatever the persona wants, and the constructor still gives the lie away. It is also why this sits beside the parameter-table row rather than inside it — that one asks whether the table is complete and hashes it, this one asks whether the table was built by an implementation.

How to resolve it

Override WebGL parameters at the engine level, where the return value is constructed by the implementation itself. A JavaScript wrapper around getParameter is visible from the constructor name alone, whatever the numbers say.

Read in the wild by

FakeBrowser (collector)

Stores every getParameter result as {type: value.constructor.name, value} across ~200 numeric enums — recording the constructor separately from the value, which is only necessary if the type has to be reproduced faithfully on replay.

dumpWebGLCore(), result.params[glEnum].type — script/dumpDD.js

kkoooqq/fakebrowser script/dumpDD.js

Every attribution traces to a published artifact. See the sources and their limits.

Nearby checks in Render & GPU

See all 35 checks in Render & GPU
Who builds this test

Clearcote is a browser built for fingerprint coherence

It is a Chromium fork, maintained by the same people who wrote this reference. It ships as a compiled browser rather than as a stealth script injected into someone else's — which is a description of how it is built, and is not an argument about how it behaves on this check.

This audit takes no position on how Clearcote scores on Render & GPU checks, on this one, or anywhere else. It has no baseline corpus of other people's fingerprints to rank you against and no vendor scoreboard — nearly every check is self-referential, asking one browser the same question through two independent APIs and reporting whether both answers can be true at once. It runs identically on any browser, including ours. Run it on yours and read the result yourself.

See the other checks in Render & GPU — the family webgl-param-value-types belongs to.