Sign in
chromium
/
codesearch
/
chromium
/
src
/
HEAD
/
.
/
chrome
/
test
/
data
/
android
/
customtabs
/
test_window_open.html
blob: f6ceb57cd12469e162b8f874abb2b7545d85de26 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<html>
<body>
<p>
Click the button to open a new browser window.
</p>
<button
id
=
"new_window"
onclick
=
"
myFunction
()
"
>
Click me
</button>
<script>
function
myFunction
()
{
window
.
open
(
"about:blank"
);
}
</script>
</body>
</html>