qutebrowser/tests/end2end/data/long_load.html
2017-10-06 20:30:06 -04:00

10 lines
219 B
HTML

<script type="text/javascript">
var date = new Date();
var curDate = new Date();
while(curDate-date < 2000) {
curDate = new Date();
};
document.write("<html><h1>hello</h1></html>");
</script>