mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
449 B
HTML
29 lines
449 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Long load</title>
|
|
<link rel="stylesheet" charset="UTF-8" type="text/css" media="screen" href="simple.css"/>
|
|
<style type="text/css">
|
|
body {
|
|
background: white;
|
|
}
|
|
|
|
div {
|
|
font-size: 4em;
|
|
}
|
|
|
|
div > span {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
Time passes:
|
|
<script>
|
|
for (i = 0; i < 5000; i++) {
|
|
document.write("<br>...");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|