electron/spec/fixtures/pages/navigate_in_page_and_wait.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>