1
0
Fork 0
firefox/testing/web-platform/tests/x-frame-options/invalid.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

65 lines
1.2 KiB
HTML

<!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({
headerValue: `ALLOW-FROM https://example.com/`,
sameOriginAllowed: true,
crossOriginAllowed: true
});
xfo_simple_tests({
headerValue: `ALLOW-FROM=https://example.com/`,
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>