10 lines
301 B
JavaScript
10 lines
301 B
JavaScript
// 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();
|