tenfourfox/js/xpconnect/crashtests/639737-1.html

20 lines
250 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>