Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Unified Diff: LayoutTests/fast/dom/background-shorthand-csstext.html

Issue 846933002: Handle null in value list in getLayeredShorthandValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix more tests Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/background-shorthand-csstext.html
diff --git a/LayoutTests/fast/dom/background-shorthand-csstext.html b/LayoutTests/fast/dom/background-shorthand-csstext.html
index c7e10a2f40fbd8e658134776dd4f0603acce3860..96be581aa3327ddaa53912a9850289445ab64bdd 100644
--- a/LayoutTests/fast/dom/background-shorthand-csstext.html
+++ b/LayoutTests/fast/dom/background-shorthand-csstext.html
@@ -32,7 +32,7 @@ function test()
testRunner.dumpAsText();
shouldBe("document.body.style.background == 'green'", true);
- shouldBe("document.getElementById('div1').style.background == 'repeat-x, repeat-y white'", true);
+ shouldBe("document.getElementById('div1').style.background == ''", true);
shouldBe("document.getElementById('div2').style.background == '50% 50% blue'", true);
shouldBe("document.getElementById('div3').style.background == 'none repeat scroll rgb(255, 255, 255)'", true);
}

Powered by Google App Engine
This is Rietveld 408576698