Index: third_party/WebKit/LayoutTests/fast/css/background-serialize.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/background-serialize.html b/third_party/WebKit/LayoutTests/fast/css/background-serialize.html |
index 0808de2edb6e3616a917952dd6066b928b957603..9852529302cb19830eb662bd471d430568e071ac 100644 |
--- a/third_party/WebKit/LayoutTests/fast/css/background-serialize.html |
+++ b/third_party/WebKit/LayoutTests/fast/css/background-serialize.html |
@@ -15,6 +15,8 @@ assert_equals(getStyle('.test { background: initial; }'), '.test { background: i |
assert_equals(getStyle('.test { background: initial; background-color: black; }'), '.test { background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: black; }'); |
assert_equals(getStyle('.test { background: inherit; }'), '.test { background: inherit; }'); |
assert_equals(getStyle('.test { background: inherit; background-color: black; }'), '.test { background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: black; }'); |
+assert_equals(getStyle('.test { background: unset; background-color: black; }'), '.test { background-image: unset; background-position: unset; background-size: unset; background-repeat: unset; background-attachment: unset; background-origin: unset; background-clip: unset; background-color: black; }'); |
+assert_equals(getStyle('.test { background: unset; }'), '.test { background: unset; }'); |
assert_equals(getStyle('.test { background: none; background-repeat: repeat-x !important;}'), '.test { background-image: none; background-position: initial; background-size: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; background-repeat: repeat-x !important; }'); |
assert_equals(getStyle('.test { background: none; background-repeat: repeat-x;}'), '.test { background: none repeat-x; }'); |
assert_equals(getStyle('.test { background: none; background-position-x: 0%;}'), '.test { background: none 0%; }'); |