Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

// META: title=tests for navigator.userAgentData on Linux
promise_test(() => {
return navigator.userAgentData.getHighEntropyValues(["platformVersion", "wow64"]).then(
hints => {
if (navigator.userAgentData.platform === "Linux") {
assert_true(hints.platformVersion === "");
assert_equals(hints.wow64, false);
}
}
);
}, "Platform version and wow64-ness on Linux should be fixed values");