blob: 3af48ee416ac217d7c5d488d6874e445bc6edf1e [file] [log] [blame] [edit]
// 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");