Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

  • This test has a WPT meta file that expects 1 subtest issues.
  • This WPT test may be referenced by the following Test IDs:
    • /html/browsers/browsing-the-web/navigating-across-documents/javascript-url-security-check-same-origin-domain.sub.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>javascript: URL security check for same-origin-domain but not same-origin</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
"use strict";
document.domain = "{{host}}";
setup({ explicit_done: true });
window.onload = () => {
async_test(t => {
assert_equals(frames[0].document.body.textContent, "", "before");
window.onmessage = t.step_func_done(() => {
assert_equals(frames[0].document.body.textContent, "new", "after");
});
frames[0].location.href = "javascript:parent.postMessage('done', '*'); 'new';";
});
done();
};
</script>