qutebrowser/tests/end2end/data/javascript/window_open.html
2016-09-05 15:08:00 +02:00

23 lines
449 B
HTML

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function open_modal() {
if (window.showModalDialog) {
window.showModalDialog();
} else {
window.open('hello.txt', 'window', 'modal');
}
}
</script>
</head>
<body>
<button onclick="window.open('hello.txt', 'window')" id="open-normal">normal</button>
<button onclick="open_modal()" id="open-modal">modal</button>
</body>
</html>