diff options
Diffstat (limited to 'dom/canvas/crashtests/745699-1.html')
-rw-r--r-- | dom/canvas/crashtests/745699-1.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/745699-1.html b/dom/canvas/crashtests/745699-1.html new file mode 100644 index 0000000000..c65acf201a --- /dev/null +++ b/dom/canvas/crashtests/745699-1.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html> +<head> +<style> +@font-face { + font-family: "z"; + src: url(invalid); +} +</style> + +<script> +function boom() +{ + var ctx = document.querySelector("canvas").getContext('2d'); + ctx.font = "10px serif"; + document.querySelector("style").appendChild(document.createTextNode(" ")); + ctx.measureText("123"); +} +</script> +</head> + +<body onload="boom();"> +<canvas width="100" height="100"></canvas> +</body> +</html> |