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

Unified Diff: LayoutTests/css3/filters/script-tests/filter-property-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/css3/filters/script-tests/filter-property-parsing-invalid.js
diff --git a/LayoutTests/css3/filters/script-tests/filter-property-parsing-invalid.js b/LayoutTests/css3/filters/script-tests/filter-property-parsing-invalid.js
index 80daba4b63b0ff1fee1ecaf5a81dcb3048ecc2d9..56ab629d1bfd366d1b5a44590d2a3ea940d5f37e 100644
--- a/LayoutTests/css3/filters/script-tests/filter-property-parsing-invalid.js
+++ b/LayoutTests/css3/filters/script-tests/filter-property-parsing-invalid.js
@@ -18,7 +18,7 @@ function testInvalidFilterRule(description, rule)
declaration = cssRule.style;
shouldBe("declaration.length", "0");
- shouldBe("declaration.getPropertyValue('-webkit-filter')", "null");
+ shouldBeEqualToString("declaration.getPropertyValue('-webkit-filter')", "");
}
testInvalidFilterRule("Too many parameters", "url(#a #b)");

Powered by Google App Engine
This is Rietveld 408576698