4 <meta name=
"referrer" content=
"origin" />
8 var port
= document
.location
.search
.substr(1);
10 var frame
= document
.createElement("iframe");
11 frame
.src
= "http://127.0.0.1:" + port
+ "/files/referrer-policy-log.html";
12 frame
.onload = function() { document
.title
= "loaded"; };
13 document
.body
.appendChild(frame
);