tenfourfox/layout/style/crashtests/873222.html

18 lines
256 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var r = document.documentElement;
r.style.font = "170% fantasy";
r.style.fontSynthesis = "none";
r.getAttribute("style");
}
</script>
</head>
<body onload="boom();"></body>
</html>