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

Unified Diff: LayoutTests/css3/blending/script-tests/blend-mode-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/blending/script-tests/blend-mode-property-parsing-invalid.js
diff --git a/LayoutTests/css3/blending/script-tests/blend-mode-property-parsing-invalid.js b/LayoutTests/css3/blending/script-tests/blend-mode-property-parsing-invalid.js
index 02bb10cb5b2728b968cad0da996b4df52fd7db46..96b811447aa2c555ccd601f8d892f47d54922660 100644
--- a/LayoutTests/css3/blending/script-tests/blend-mode-property-parsing-invalid.js
+++ b/LayoutTests/css3/blending/script-tests/blend-mode-property-parsing-invalid.js
@@ -19,7 +19,7 @@ function testInvalidFilterRule(description, rule)
declaration = cssRule.style;
shouldBe("declaration.length", "0");
- shouldBe("declaration.getPropertyValue('mix-blend-mode')", "null");
+ shouldBeEqualToString("declaration.getPropertyValue('mix-blend-mode')", "");
}
testInvalidFilterRule("Too many parameters", "overlay overlay");

Powered by Google App Engine
This is Rietveld 408576698