mirror of
https://github.com/servo/servo.git
synced 2025-07-12 18:03:49 +01:00
84 lines
2.3 KiB
HTML
84 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="./support/helper.js"></script>
|
|
<body>
|
|
<script>
|
|
async_test(t => {
|
|
var i = document.createElement('iframe');
|
|
i.src = "./support/xfo.py?value=INVALID";
|
|
|
|
wait_for_message_from(i, t)
|
|
.then(t.step_func_done(e => {
|
|
assert_equals(e.data, "Loaded");
|
|
i.remove();
|
|
}));
|
|
|
|
document.body.appendChild(i);
|
|
}, "`XFO: INVALID` allows same-origin framing.");
|
|
|
|
async_test(t => {
|
|
var i = document.createElement('iframe');
|
|
i.src = "http://{{domains[www]}}:{{ports[http][0]}}/x-frame-options/support/xfo.py?value=INVALID";
|
|
|
|
wait_for_message_from(i, t)
|
|
.then(t.step_func_done(e => {
|
|
assert_equals(e.data, "Loaded");
|
|
i.remove();
|
|
}));
|
|
|
|
document.body.appendChild(i);
|
|
}, "`XFO: INVALID` allows cross-origin framing.");
|
|
|
|
async_test(t => {
|
|
var i = document.createElement('iframe');
|
|
i.src = "./support/xfo.py?value=ALLOWALL";
|
|
|
|
wait_for_message_from(i, t)
|
|
.then(t.step_func_done(e => {
|
|
assert_equals(e.data, "Loaded");
|
|
i.remove();
|
|
}));
|
|
|
|
document.body.appendChild(i);
|
|
}, "`XFO: ALLOWALL` allows same-origin framing.");
|
|
|
|
async_test(t => {
|
|
var i = document.createElement('iframe');
|
|
i.src = "http://{{domains[www]}}:{{ports[http][0]}}/x-frame-options/support/xfo.py?value=ALLOWALL";
|
|
|
|
wait_for_message_from(i, t)
|
|
.then(t.step_func_done(e => {
|
|
assert_equals(e.data, "Loaded");
|
|
i.remove();
|
|
}));
|
|
|
|
document.body.appendChild(i);
|
|
}, "`XFO: ALLOWALL` allows cross-origin framing.");
|
|
|
|
async_test(t => {
|
|
var i = document.createElement('iframe');
|
|
i.src = "./support/xfo.py?value=";
|
|
|
|
wait_for_message_from(i, t)
|
|
.then(t.step_func_done(e => {
|
|
assert_equals(e.data, "Loaded");
|
|
i.remove();
|
|
}));
|
|
|
|
document.body.appendChild(i);
|
|
}, "Empty `XFO:` allows same-origin framing.");
|
|
|
|
async_test(t => {
|
|
var i = document.createElement('iframe');
|
|
i.src = "http://{{domains[www]}}:{{ports[http][0]}}/x-frame-options/support/xfo.py?value=";
|
|
|
|
wait_for_message_from(i, t)
|
|
.then(t.step_func_done(e => {
|
|
assert_equals(e.data, "Loaded");
|
|
i.remove();
|
|
}));
|
|
|
|
document.body.appendChild(i);
|
|
}, "Empty `XFO:` allows cross-origin framing.");
|
|
</script>
|