Revision 8c082b2469660135ce3347f01fb972f46932930c authored by Michael[tm] Smith on 06 March 2018, 06:25:24 UTC, committed by Michael[tm] Smith on 06 March 2018, 06:52:33 UTC
1 parent c031760
Raw File
non-secure-context.any.js
test(() => {
  assert_false(self.isSecureContext);
}, "Lack of .https file name flag implies non-secure context");

test(() => {
  assert_equals(location.protocol, "http:");
}, "Lack of .https file name flag implies HTTP scheme");

done();
back to top