summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/360293-1.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /dom/canvas/crashtests/360293-1.html
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/canvas/crashtests/360293-1.html')
-rw-r--r--dom/canvas/crashtests/360293-1.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/360293-1.html b/dom/canvas/crashtests/360293-1.html
new file mode 100644
index 0000000000..8a0859e41b
--- /dev/null
+++ b/dom/canvas/crashtests/360293-1.html
@@ -0,0 +1,35 @@
+<html>
+
+
+<body>
+ Firefox: <a href="javascript:noCrash()">no crash</a> | <a href="javascript:crash()">crash</a><br/>
+ <canvas id="foo" width="200" height="200">
+ </canvas>
+ <script>
+ function d(lineWidth){
+ var c = document.getElementById("foo").getContext("2d")
+ c.clearRect(0,0,200,200)
+ c.lineWidth = lineWidth
+ c.beginPath()
+ c.arc(100,100,80, Math.PI, 2*Math.PI, 1)
+ c.stroke()
+ c.beginPath()
+ c.arc(50,50, 20, 0, 2*Math.PI, 1)
+ c.stroke()
+ c.beginPath()
+ c.arc(150,50, 20, 0, 2*Math.PI, 1)
+ c.stroke()
+ }
+ function noCrash() {
+ d(Math.random()*20+5)
+ }
+ function crash() {
+ d( '_' )
+ }
+
+ crash();
+ </script>
+
+</body>
+
+</html>