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

Unified Diff: LayoutTests/fast/css/script-tests/image-set-setting.js

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/css/script-tests/image-set-setting.js
diff --git a/LayoutTests/fast/css/script-tests/image-set-setting.js b/LayoutTests/fast/css/script-tests/image-set-setting.js
index 734c9ad11ac13adf61f6db21b71fe97c063d6c08..1488e25648559cc080e301dbd93909b16141463a 100644
--- a/LayoutTests/fast/css/script-tests/image-set-setting.js
+++ b/LayoutTests/fast/css/script-tests/image-set-setting.js
@@ -5,7 +5,7 @@ function testComputedStyle(property, fullRule)
var div = document.createElement("div");
document.body.appendChild(div);
div.setAttribute("style", property + ": " + fullRule);
- var computedValue = div.style.background;
+ var computedValue = div.style.backgroundImage;
document.body.removeChild(div);
return computedValue;
}

Powered by Google App Engine
This is Rietveld 408576698