mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
503 B
HTML
25 lines
503 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var frame = document.getElementById("f");
|
|
var frameWin = frame.contentWindow;
|
|
var frameDoc = frame.contentDocument;
|
|
frameDoc.write("<body>");
|
|
frameDoc.close();
|
|
frameWin.history.pushState(null, 'title', 'pushState47.html');
|
|
document.body.removeChild(frame);
|
|
frameWin.history.state;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<iframe id="f" src="data:text/html,1"></iframe>
|
|
</body>
|
|
</html>
|