13 lines
291 B
HTML
13 lines
291 B
HTML
<html>
|
|
<header>
|
|
<script type="text/javascript">
|
|
window.history.replaceState(window.location.href, "Sample Title", window.location.href);
|
|
// Simulate that we load web page.
|
|
for (let i = 0; i < 10000; i++) {
|
|
console.log('wait : ' + i);
|
|
}
|
|
</script>
|
|
</header>
|
|
<body>
|
|
</body>
|
|
</html>
|