summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/639737-1.html
blob: b461cc02bb70d69b8251924283ff63e4781aa4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<script>

function b() { 
  try { sset("u"); } catch(e) { }
  try { [0].map(b); } catch(e) { }
}

var sset = document.documentElement.style.__lookupSetter__("textIndent");
b();

</script>
</head>

<body></body>
</html>