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

Unified Diff: LayoutTests/fast/css/getPropertyValue-border.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-border.html
diff --git a/LayoutTests/fast/css/getPropertyValue-border.html b/LayoutTests/fast/css/getPropertyValue-border.html
index d119bd69ce454eb276baeaf03ea7004214a51940..d8751e65cc0b9d9767e95fea4a9985083ee9b87e 100644
--- a/LayoutTests/fast/css/getPropertyValue-border.html
+++ b/LayoutTests/fast/css/getPropertyValue-border.html
@@ -56,10 +56,10 @@
shouldBe('div7.style.getPropertyValue("border")', "'solid'");
var div8 = document.getElementById("border8");
- shouldBe('div8.style.getPropertyValue("border")', "null");
+ shouldBeEqualToString('div8.style.getPropertyValue("border")', "");
var div9 = document.getElementById("border9");
- shouldBe('div9.style.getPropertyValue("border")', "null");
+ shouldBeEqualToString('div9.style.getPropertyValue("border")', "");
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698