Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 6 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /x-frame-options/sameorigin.sub.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>X-Frame-Options variations of SAMEORIGIN</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./support/helper.sub.js"></script>
<body>
<script>
"use strict";
xfo_simple_tests({
headerValue: `SAMEORIGIN`,
sameOriginAllowed: true,
crossOriginAllowed: false
});
xfo_simple_tests({
headerValue: `sameOriGin`,
sameOriginAllowed: true,
crossOriginAllowed: false
});
xfo_simple_tests({
headerValue: ` SAMEORIGIN `,
sameOriginAllowed: true,
crossOriginAllowed: false
});
xfo_test({
url: `./support/nested.py?origin=http://{{host}}:{{ports[http][0]}}&value=SAMEORIGIN&loadShouldSucceed=true`,
check: "loaded message",
message: `SAMEORIGIN allows same-origin nested in same-origin framing`
});
xfo_test({
check: "failed message",
message: `SAMEORIGIN blocks cross-origin nested in same-origin framing`
});
xfo_test({
check: "failed message",
message: `SAMEORIGIN blocks same-origin nested in cross-origin framing`
});
xfo_test({
check: "failed message",
message: `SAMEORIGIN blocks cross-origin nested in cross-origin framing`
});
</script>