summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/WorkerNavigator_userAgentData.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/workers/WorkerNavigator_userAgentData.https.html')
-rw-r--r--testing/web-platform/tests/workers/WorkerNavigator_userAgentData.https.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/web-platform/tests/workers/WorkerNavigator_userAgentData.https.html b/testing/web-platform/tests/workers/WorkerNavigator_userAgentData.https.html
index 8c22d8f867..a46c530cef 100644
--- a/testing/web-platform/tests/workers/WorkerNavigator_userAgentData.https.html
+++ b/testing/web-platform/tests/workers/WorkerNavigator_userAgentData.https.html
@@ -21,7 +21,7 @@
assert_equals(e.data.platform, navigator.userAgentData.platform);
const highEntropyValues = await navigator.userAgentData.getHighEntropyValues([
"architecture", "bitness", "fullVersionList", "model",
- "platformVersion", "uaFullVersion", "wow64", "formFactor",
+ "platformVersion", "uaFullVersion", "wow64", "formFactors",
]);
assert_equals(e.data.fullVersionList.length,
@@ -39,7 +39,7 @@
assert_equals(e.data.platformVersion, highEntropyValues.platformVersion);
assert_equals(e.data.uaFullVersion, highEntropyValues.uaFullVersion);
assert_equals(e.data.wow64, highEntropyValues.wow64);
- assert_equals(e.data.formFactor.join(','), highEntropyValues.formFactor.join(','));
+ assert_equals(e.data.formFactors.join(','), highEntropyValues.formFactors.join(','));
assert_equals(e.data.NavigatorUADataExposed, true);
// Architecture should be one of two permitted values.