gecko-dev/gfx/tests/crashtests/950000.html
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

41 lines
598 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style id="s">
@font-face {
font-family: x;
src: url(bogus-font.ttf);
}
@font-face {
font-family: y;
src: url(bogus-font.ttf);
}
</style>
<script>
function boom()
{
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
ctx.font = 'normal 20px x';
document.getElementById("s").remove();
setTimeout(function() {
ctx.measureText("A");
}, 50);
}
window.addEventListener("DOMContentLoaded", boom)
</script>
</head>
<body><div style="font-family: y;">y</div></body>
</html>