diff options
Diffstat (limited to 'dom/bindings/crashtests/769464.html')
-rw-r--r-- | dom/bindings/crashtests/769464.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dom/bindings/crashtests/769464.html b/dom/bindings/crashtests/769464.html new file mode 100644 index 0000000000..d075ee66a0 --- /dev/null +++ b/dom/bindings/crashtests/769464.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<script> + +function boom() +{ + window.getComputedStyle(new Worker("404.js")); +} + +window.addEventListener("load", boom); + +</script> |