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

Unified Diff: LayoutTests/fast/css/parsing-object-fit.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/parsing-object-fit.html
diff --git a/LayoutTests/fast/css/parsing-object-fit.html b/LayoutTests/fast/css/parsing-object-fit.html
index fb7174cf9d459c50f02ddc9934fe1199c7ee50a9..0f9d13fefe004b2e8e5f2cc8d7c02574f8ebea9e 100644
--- a/LayoutTests/fast/css/parsing-object-fit.html
+++ b/LayoutTests/fast/css/parsing-object-fit.html
@@ -38,10 +38,10 @@
shouldBe('test("object-fit: none;")', '"none"');
shouldBe('test("object-fit: scale-down;")', '"scale-down"');
- shouldBeNull('test("object-fit: fill contain;")');
- shouldBeNull('test("object-fit: bananas;")');
- shouldBeNull('test("object-fit: 23px;")');
- shouldBeNull('test("object-fit: 20%;")');
+ shouldBeEqualToString('test("object-fit: fill contain;")', '');
+ shouldBeEqualToString('test("object-fit: bananas;")', '');
+ shouldBeEqualToString('test("object-fit: 23px;")', '');
+ shouldBeEqualToString('test("object-fit: 20%;")', '');
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698