Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /infrastructure/server/secure-context.https.any.html - WPT Dashboard Interop Dashboard
- /infrastructure/server/secure-context.https.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /infrastructure/server/secure-context.https.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /infrastructure/server/secure-context.https.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=window,dedicatedworker,sharedworker,serviceworker
test(() => {
assert_true(self.isSecureContext);
}, "Use of .https file name flag implies secure context");
test(() => {
assert_equals(location.protocol, "https:");
}, "Use of .https file name flag implies HTTPS scheme");
done();