зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
390 B
HTML
23 строки
390 B
HTML
<html>
|
|
<body>
|
|
|
|
<!-- The test relies on the fact that this file is completely empty. -->
|
|
|
|
<script>
|
|
|
|
function ok(b, msg)
|
|
{
|
|
alert((b ? 'pass:' : 'fail:') + msg);
|
|
}
|
|
|
|
var w = window.open("file_empty.html");
|
|
w.addEventListener('load', function() {
|
|
ok(true, 'Got load.');
|
|
ok(w.document.getElementById('url'), 'Found element with id "url"');
|
|
alert('finish');
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|