summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/subapps/insecure-context-error.tentative.html
blob: ada4a846e896cf8c89d0e6db7b6bf3b9772624f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<title>Sub Apps: subApps is undefined in insecure context (non-https)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>

test(() => {
  assert_equals(navigator.subApps, undefined);
  assert_equals(window.SubApps, undefined);
}, 'subApps is not defined in insecure context.');

</script>