blob: 5871eac00148d44a8bebdc4394e1cb8b4d58dac8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!doctype html>
<title>Example https test</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(function() {
assert_equals(window.location.protocol, "https:");
}, "Test that file was loaded with the correct protocol");
</script>
|