Index: LayoutTests/fast/css/background-repeat-null-y-crash.html |
diff --git a/LayoutTests/fast/css/background-repeat-null-y-crash.html b/LayoutTests/fast/css/background-repeat-null-y-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..445f7fa77419857cd25c4f64dc4e8e90a596442f |
--- /dev/null |
+++ b/LayoutTests/fast/css/background-repeat-null-y-crash.html |
@@ -0,0 +1,9 @@ |
+<!DOCTYPE html> |
+<script src="../../resources/js-test.js"></script> |
+<body> |
+<script> |
+ document.body.style.backgroundRepeat='repeat'; |
+ document.body.style.backgroundRepeatY=''; |
+ shouldBe(document.body.style.background, ''); |
+</script> |
+</body> |