diff options
Diffstat (limited to '')
-rw-r--r-- | dom/canvas/crashtests/745818-large-source.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/745818-large-source.html b/dom/canvas/crashtests/745818-large-source.html new file mode 100644 index 0000000000..a5be76be06 --- /dev/null +++ b/dom/canvas/crashtests/745818-large-source.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> +<head> +<script> + +function boom() +{ + var a = document.getElementById("a"); + var b = document.getElementById("b"); + a.getContext('2d').createPattern(b, 'no-repeat'); +} + +</script> +</head> + +<body onload="boom();"> +<canvas id="a" width="61" height="26"></canvas> +<canvas id="b" width="611" height="439807"></canvas> +</body> + +</html> |