blob: 322df32e7ebbd1506345bf56e4d03e7e40271640 [file] [log] [blame]
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.setPopupBlockingEnabled(false);
testRunner.waitUntilDone();
}
var popup = window.open('resources/destination.html');
document.write('location: ' + popup.location + '<br/>');
var props = ['href', 'pathname', 'host', 'hostname', 'hash', 'port',
'protocol', 'search'];
for (var i = 0; i < props.length; ++i) {
var prop = props[i];
document.write(prop + ': ' + popup.location[prop] + '<br/>');
}
</script>