<!--
Copyright 2017 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
<html>
<head>
<title>Popup created using window.open</title>
<script>
function test() {
window.open("popup-success.html",
"mywindow", "menubar=1, resizable=1, width=350, height=250, noopener");
}
</script>
</head>
<body onload="test()">
pop-up test page
</body>
</html>