blob: 3e89774bf2786ba01036b67cae7a2ec46c0313f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<meta charset="utf-8">
</head>
<header><title>Title1</title></header>
<body>
<script>
addEventListener("load", function() {
setTimeout(function() {
document.title = "Title2";
}, 100);
});
</script>
</body>
<iframe src="hello.html"></iframe>
</html>
|