summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/file_sync_xhr_document_write_with_iframe.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/xhr/tests/file_sync_xhr_document_write_with_iframe.html')
-rw-r--r--dom/xhr/tests/file_sync_xhr_document_write_with_iframe.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/dom/xhr/tests/file_sync_xhr_document_write_with_iframe.html b/dom/xhr/tests/file_sync_xhr_document_write_with_iframe.html
new file mode 100644
index 0000000000..2135011d9c
--- /dev/null
+++ b/dom/xhr/tests/file_sync_xhr_document_write_with_iframe.html
@@ -0,0 +1,22 @@
+<!DOCTYPE HTML>
+<body>
+<script>
+function syncXHR() {
+ let xhr = new XMLHttpRequest();
+ xhr.open("GET", window.location, false);
+ xhr.send(null);
+}
+
+addEventListener('load', evt => {
+ syncXHR();
+ document.open();
+ document.write(
+ '<body>' +
+ '<iframe src="about:blank"></iframe>' +
+ // eslint-disable-next-line no-useless-concat
+ '<script>window.opener.postMessage("DONE", "*");</' + 'script>' +
+ '</body>');
+ document.close();
+}, { once: true });
+</script>
+</body>