blob: e8f7d578b996c8ac9306b7d528ce808e50e28fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<head>
</head>
<body>
<iframe id="frame"></iframe>
<script type="application/javascript">
var tempstr = window.location.pathname.substring(0, window.location.pathname.lastIndexOf('/')+1);
document.getElementById("frame").src = "http://mochi.test:8888" + tempstr + "grandchild_bug260264.html" + window.location.hash;
</script>
</body>
</html>
|