summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/popup_blocker/popup-referrer.html
blob: 8dad1945be62916ad876428dd7429eb9976f5ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
<meta name="referrer" content="origin"/>
<title>
  Check that the referrer is correctly set when opening a blocked popup
</title>
<script>
function test() {
  window.open("check-referrer.html");
}
</script>
</head>
<body onload="test()">
pop-up test page
</body>
</html>