summaryrefslogtreecommitdiff
path: root/browser/devtools/styleeditor/test/longload.html
blob: 8e58daeb7cb29c6746cf3e561690bf0aa2ab5be9 (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
<!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>