Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /x-frame-options/invalid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>X-Frame-Options invalid values</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: `INVALID`,
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
headerValue: `ALLOWALL`,
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
headerValue: `"DENY"`,
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
headerValue: `DE NY`,
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
headerValue: `"SAMEORIGIN"`,
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
headerValue: `"SAMEORIGIN,DENY"`,
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
headerValue: ``,
sameOriginAllowed: true,
crossOriginAllowed: true
});
</script>