blob: 51f8c936b61e8dd2b8be28980cb430319727c5c9 (
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>
|