summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/473914-1.html
blob: 47a7a989860130b7dcb213cb24e88a5ff830b081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<style id="s"></style>
<script type="text/javascript">

// Duplicates the string 2^n times
function exp(s, n)
{
  for (var i = 0; i < n; ++i)
    s += s;
  return s;
}

var stylesheet = exp("/**/", 20);
document.getElementById("s").textContent = stylesheet;

</script>
</head>
<body>
<div></div>
</body>
</html>