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

Unified Diff: LayoutTests/fast/css/border-spacing-without-vertical-value.html

Issue 1274643002: CSSStyleDeclaraction returns empty string (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed changes from imported/csswg-test Created 5 years, 4 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/border-spacing-without-vertical-value.html
diff --git a/LayoutTests/fast/css/border-spacing-without-vertical-value.html b/LayoutTests/fast/css/border-spacing-without-vertical-value.html
index 8c1fdfa61fd139324e9b1457521c94b1315270fe..c83b43af93603075f51cea91b80e674a5456f61f 100644
--- a/LayoutTests/fast/css/border-spacing-without-vertical-value.html
+++ b/LayoutTests/fast/css/border-spacing-without-vertical-value.html
@@ -11,7 +11,7 @@ var a = document.createElement("a");
a.setAttribute("style", "-webkit-border-horizontal-spacing: 1px;");
var borderSpacing = a.style.getPropertyValue('border-spacing');
-if (borderSpacing !== null)
+if (borderSpacing !== "")
document.write('FAIL. WebKit didn\'t crash but got "' + borderSpacing + '" but expected "".');
else
document.write("PASS. WebKit didn't crash.");

Powered by Google App Engine
This is Rietveld 408576698