chromium/chrome/test/data/popup_blocker/popup-framename.html

<html>
<head>
<title>
  Check that the frame name is correctly set when opening a blocked popup
</title>
<script>
function test() {
  window.open("check-framename.html", "fancyname");
}
</script>
</head>
<body onload="test()">
pop-up test page
</body>
</html>