diff options
Diffstat (limited to 'layout/style/crashtests/729126-1.html')
-rw-r--r-- | layout/style/crashtests/729126-1.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/layout/style/crashtests/729126-1.html b/layout/style/crashtests/729126-1.html new file mode 100644 index 0000000000..a5c50abd0b --- /dev/null +++ b/layout/style/crashtests/729126-1.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<body style="transition-duration: 1ms"></body> +<script> +var body = document.body; +/* flush */ getComputedStyle(body, "").background; +body.style.background = 'url(none.png), repeat'; +/* flush */ getComputedStyle(body, "").background; +</script> +</html> |