9 var frame
= document
.getElementById("f");
10 var frameWin
= frame
.contentWindow
;
11 var frameDoc
= frame
.contentDocument
;
12 frameDoc
.write("<body>");
14 frameWin
.history
.pushState(null, 'title', 'pushState47.html');
15 document
.body
.removeChild(frame
);
16 frameWin
.history
.state
;
21 <body onload=
"boom();">
22 <iframe id=
"f" src=
"data:text/html,1"></iframe>