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

Unified Diff: LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js

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/box-shadow/script-tests/box-shadow-parsing-invalid.js
diff --git a/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js b/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js
index 0b827de30b902f0502ebd50b4108561d38161a1b..3f38e0e34225389401be5cc2a7881f848a44820b 100644
--- a/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js
+++ b/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js
@@ -18,7 +18,7 @@ function testInvalidFilterRule(description, rule)
declaration = cssRule.style;
shouldBe("declaration.length", "0");
- shouldBe("declaration.getPropertyValue('box-shadow')", "null");
+ shouldBeEqualToString("declaration.getPropertyValue('box-shadow')", "");
}
// FIXME A whole bunch of negative parsing tests are missing, see bug

Powered by Google App Engine
This is Rietveld 408576698