summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/WorkerNavigator_userAgentData.http.html
blob: 4e8ca34eebccd53d0e00e39008d2da7f29945a68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<title> WorkerNavigator.userAgentData </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>

  promise_test(async () => {
    const e = await new Promise((resolve, reject) => {
      const worker = new Worker("./support/WorkerNavigator.js");
      worker.onmessage = resolve;
    });

    assert_equals(e.data.brands, undefined);
    assert_equals(e.data.mobile, undefined);
    assert_equals(e.data.getHighEntropyValues, undefined);
  }, "Test that userAgentData is not available in workers in non-secure contexts");
</script>