Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 22 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /ua-client-hints/idlharness.https.any.html - WPT Dashboard Interop Dashboard
- /ua-client-hints/idlharness.https.any.worker.html - WPT Dashboard Interop Dashboard
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
'use strict';
idl_test(
['ua-client-hints'],
['html', 'dom'],
idl_array => {
if (self.GLOBAL.isWorker()) {
idl_array.add_objects({ WorkerNavigator: ['navigator'] });
} else {
idl_array.add_objects({ Navigator: ['navigator'] });
}
idl_array.add_objects({
NavigatorUAData: ['navigator.userAgentData'],
});
}
);