summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/729126-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/style/crashtests/729126-2.html')
-rw-r--r--layout/style/crashtests/729126-2.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/layout/style/crashtests/729126-2.html b/layout/style/crashtests/729126-2.html
new file mode 100644
index 0000000000..63533ee302
--- /dev/null
+++ b/layout/style/crashtests/729126-2.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html>
+<body style="background-size: cover; transition-duration: 1ms"></body>
+<script>
+var body = document.body;
+/* flush */ getComputedStyle(body, "").backgroundSize;
+body.style.backgroundSize = 'contain';
+/* flush */ getComputedStyle(body, "").backgroundSize;
+</script>
+</html>