gecko-dev/gfx/tests/crashtests/950000.html

41 lines
598 B
HTML
Raw Normal View History

2015-02-22 02:41:58 +00:00
<!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)
2015-02-22 02:41:58 +00:00
</script>
</head>
<body><div style="font-family: y;">y</div></body>
</html>