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

Unified Diff: LayoutTests/fast/css/getPropertyValue-webkit-text-stroke.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-webkit-text-stroke.html
diff --git a/LayoutTests/fast/css/getPropertyValue-webkit-text-stroke.html b/LayoutTests/fast/css/getPropertyValue-webkit-text-stroke.html
index 321897dfd9a84472f7094523bb8bfd03642ffa48..6ba0610259a0df312e3594e7a65f4fbfd8e017c6 100644
--- a/LayoutTests/fast/css/getPropertyValue-webkit-text-stroke.html
+++ b/LayoutTests/fast/css/getPropertyValue-webkit-text-stroke.html
@@ -36,9 +36,9 @@
shouldBeEqualToString('webkitTextStrokeValue("text-stroke4")', '1px red');
shouldBeEqualToString('webkitTextStrokeValue("text-stroke5")', '1px black');
debug("NOTE: 'foo' is an illegal CSS value for '-webkit-text-stroke'.");
- shouldBe('webkitTextStrokeValue("text-stroke6")', "null");
- debug("NOTE: If only few longhand properties are specified, getPropertyValue for shorthand property returns null.")
- shouldBe('webkitTextStrokeValue("text-stroke7")', "null");
+ shouldBeEqualToString('webkitTextStrokeValue("text-stroke6")', "");
+ debug("NOTE: If only few longhand properties are specified, getPropertyValue for shorthand property returns empty string.")
+ shouldBeEqualToString('webkitTextStrokeValue("text-stroke7")', "");
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698