diff options
Diffstat (limited to 'dom/canvas/crashtests/780392-1.html')
-rw-r--r-- | dom/canvas/crashtests/780392-1.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/780392-1.html b/dom/canvas/crashtests/780392-1.html new file mode 100644 index 000000000..2112c9a75 --- /dev/null +++ b/dom/canvas/crashtests/780392-1.html @@ -0,0 +1,10 @@ +<!doctype HTML> +<html> +<body> +<canvas id="c" width="10000" height="10000"></canvas> +<script> +var ctx = document.getElementById("c").getContext("2d"); +ctx.fillText("Hello world!", 50, 50); +</script> +</body> +</html> |