summaryrefslogtreecommitdiffstats
path: root/devtools/client/styleeditor/test/longload.html
blob: d23a9cd77816b42f50830acd3fb0aa88f4df3139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!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 type="application/javascript;version=1.8">
    "use strict";
    for (let i = 0; i < 5000; i++) {
      document.write("<br>...");
    }
  </script>
</body>
</html>