mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
31 lines
955 B
HTML
31 lines
955 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test blob URL for non-ascii domain</title>
|
|
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="fileutils.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;version=1.7">
|
|
|
|
var iframe = document.createElement('iframe');
|
|
iframe.src = 'http://xn--exmple-cua.test/tests/dom/base/test/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>
|
|
</pre>
|
|
</body>
|
|
</html>
|