diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /gfx/tests/crashtests/746495.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/tests/crashtests/746495.html')
-rw-r--r-- | gfx/tests/crashtests/746495.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gfx/tests/crashtests/746495.html b/gfx/tests/crashtests/746495.html new file mode 100644 index 0000000000..d3a6f943b2 --- /dev/null +++ b/gfx/tests/crashtests/746495.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> +<script> + +function boom() +{ + var ctx = document.querySelector("canvas").getContext('2d'); + ctx.scale(69.25, 61); + ctx.transform(87.875, 89.5, 317.6666666666667, 86.5, 93, 196); + ctx.bezierCurveTo(30.142857142857142, 13926147670, 66.66666666666667, 243.66666666666666, 42.6, 85.5); + ctx.arc(1.6, 364955956612165500, 110.375, 15.1, 80.55555555555556, 0); + ctx.shadowColor = "green"; + ctx.shadowOffsetY = 754; + ctx.lineJoin = 'round'; + ctx.setTransform(95.125, 11, 834, 34.5, 265.3333333333333, 26.4); + ctx.stroke(); +} + +</script> +</head> +<body onload="boom();"><canvas width="100" height="100"></canvas></body> +</html> |