diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/canvas/crashtests/916128-1.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/canvas/crashtests/916128-1.html')
-rw-r--r-- | dom/canvas/crashtests/916128-1.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/916128-1.html b/dom/canvas/crashtests/916128-1.html new file mode 100644 index 000000000..cddd5185e --- /dev/null +++ b/dom/canvas/crashtests/916128-1.html @@ -0,0 +1,13 @@ +<script> +o0 = document.createElement('canvas'); +(document.body || document.documentElement).appendChild(o0); +o1 = o0.getContext('2d'); +o2 = document.createElement('img'); +//o2.src = "image2.png"; +o3 = o1.createImageData(0.7409945472006207, 0.8815588599260801); +o1.save(); +o1.mozCurrentTransform = [0.18777365986904448, 4, 4, -2048, 3, 32]; +o0.width = 0.52; +o1.putImageData(o3, -32, -0.16596290333335356); +o0.toBlob(function() {}, "video/mp4", 16); +</script> |