1
0
Fork 0
firefox/dom/file/tests/test_nonascii_blob_url.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

27 lines
781 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Test blob URL for non-ascii domain</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<div id="content"></div>
<script class="testbody" type="text/javascript">
var iframe = document.createElement('iframe');
iframe.src = 'http://xn--exmple-cua.test/tests/dom/file/tests/file_nonascii_blob_url.html';
iframe.onload = function() {
iframe.contentWindow.postMessage('hello world', '*');
onmessage = function(e) {
is(e.data, 'hello world', "Blob URL for non-ascii domain works");
SimpleTest.finish();
}
}
document.getElementById('content').appendChild(iframe);
SimpleTest.waitForExplicitFinish();
</script>
</body>
</html>