trisquel-icecat/icecat/testing/web-platform/tests/ua-client-hints/useragentdata.https.tentative.any.js
2025-10-06 02:35:48 -06:00

12 lines
427 B
JavaScript

// 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");