Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/https-acid3
/
.
/
ua-client-hints
/
useragentdata.https.any.js
blob: fc1e9e0b3c98907aace3795cf0b92eb78b6617cc [
file
] [
log
] [
blame
] [
edit
]
// META: title=tests for navigator.userAgentData
test
(
t
=>
{
const
brands
=
navigator
.
userAgentData
.
brands
;
assert_true
(
brands
.
every
(
brand
=>
brand
.
brand
.
length
<
32
),
"No brand should be longer than 32 characters."
);
});