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

Unified Diff: LayoutTests/fast/css/parsing-object-fit-expected.txt

Issue 22482004: Add support for the object-fit CSS property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Oops, sorry! Forgot to update UseCounter.cpp Created 7 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-expected.txt
diff --git a/LayoutTests/fast/css/parsing-object-fit-expected.txt b/LayoutTests/fast/css/parsing-object-fit-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6ae9eb9c58a93a85adee955c3afc9a89d35f1094
--- /dev/null
+++ b/LayoutTests/fast/css/parsing-object-fit-expected.txt
@@ -0,0 +1,21 @@
+This tests checks that all of the input values for -webkit-object-fit parse correctly.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS testComputedStyle(";") is "fill"
+PASS test("object-fit: inherit;") is "inherit"
+PASS test("object-fit: initial;") is "initial"
+PASS test("object-fit: fill;") is "fill"
+PASS test("object-fit: contain;") is "contain"
+PASS test("object-fit: cover;") is "cover"
+PASS test("object-fit: none;") is "none"
+PASS test("object-fit: scale-down;") is "scale-down"
+PASS test("object-fit: fill contain;") is null
+PASS test("object-fit: bananas;") is null
+PASS test("object-fit: 23px;") is null
+PASS test("object-fit: 20%;") is null
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Powered by Google App Engine
This is Rietveld 408576698