Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /subapps/insecure-context-error.tentative.html - WPT Dashboard Interop Dashboard
<!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>