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

Unified Diff: LayoutTests/fast/css/getPropertyValue-column-rule.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/getPropertyValue-column-rule.html
diff --git a/LayoutTests/fast/css/getPropertyValue-column-rule.html b/LayoutTests/fast/css/getPropertyValue-column-rule.html
index 1488808e91f9c3a36456ee240e81fa0d587b11ce..dc80b6eb821144d37812b351496dd0ecd161e28b 100644
--- a/LayoutTests/fast/css/getPropertyValue-column-rule.html
+++ b/LayoutTests/fast/css/getPropertyValue-column-rule.html
@@ -53,7 +53,7 @@
shouldBe('div7.style.getPropertyValue("-webkit-column-rule")', "'green'");
var div8 = document.getElementById("-webkit-column-rule8");
- shouldBe('div8.style.getPropertyValue("-webkit-column-rule")', "null");
+ shouldBeEqualToString('div8.style.getPropertyValue("-webkit-column-rule")', "");
debug("NOTE: 'foo' is an illegal CSS value for '-webkit-column-rule'.");
var div9 = document.getElementById("-webkit-column-rule9");
@@ -61,13 +61,13 @@
debug("NOTE: If only few longhand properties are specified, getPropertyValue for shorthand property returns null.");
var div10 = document.getElementById("-webkit-column-rule10");
- shouldBe('div10.style.getPropertyValue("-webkit-column-rule")', "null");
+ shouldBeEqualToString('div10.style.getPropertyValue("-webkit-column-rule")', "");
var div11 = document.getElementById("-webkit-column-rule11");
- shouldBe('div11.style.getPropertyValue("-webkit-column-rule")', "null");
+ shouldBeEqualToString('div11.style.getPropertyValue("-webkit-column-rule")', "");
var div12 = document.getElementById("-webkit-column-rule12");
- shouldBe('div12.style.getPropertyValue("-webkit-column-rule")', "null");
+ shouldBeEqualToString('div12.style.getPropertyValue("-webkit-column-rule")', "");
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698