diff options
Diffstat (limited to 'dom/canvas/crashtests/1739454-1.html')
-rw-r--r-- | dom/canvas/crashtests/1739454-1.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/1739454-1.html b/dom/canvas/crashtests/1739454-1.html new file mode 100644 index 0000000000..a32445249d --- /dev/null +++ b/dom/canvas/crashtests/1739454-1.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<script> +document.addEventListener('DOMContentLoaded', async () => { + cnv = document.createElement('canvas') + ctx = cnv.getContext('2d') + try { + a = await fetch(''); + b = await a.arrayBuffer(); + c = await self.createImageBitmap(new Blob([b]), {'premultiplyAlpha':'none'}) + ctx.createPattern(c, 'repeat-x') + } finally { + document.documentElement.className = ""; + } +}) +</script> +</html> |