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 000000000..84d6dbc08 --- /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, false); + +</script> |