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

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

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 unified diff | Download patch
OLDNEW
1 This tests checks that all of the input values for object-fit parse correctly. 1 This tests checks that all of the input values for object-fit parse correctly.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS testComputedStyle(";") is "fill" 6 PASS testComputedStyle(";") is "fill"
7 PASS test("object-fit: inherit;") is "inherit" 7 PASS test("object-fit: inherit;") is "inherit"
8 PASS test("object-fit: initial;") is "initial" 8 PASS test("object-fit: initial;") is "initial"
9 PASS test("object-fit: fill;") is "fill" 9 PASS test("object-fit: fill;") is "fill"
10 PASS test("object-fit: contain;") is "contain" 10 PASS test("object-fit: contain;") is "contain"
11 PASS test("object-fit: cover;") is "cover" 11 PASS test("object-fit: cover;") is "cover"
12 PASS test("object-fit: none;") is "none" 12 PASS test("object-fit: none;") is "none"
13 PASS test("object-fit: scale-down;") is "scale-down" 13 PASS test("object-fit: scale-down;") is "scale-down"
14 PASS test("object-fit: fill contain;") is null 14 PASS test("object-fit: fill contain;") is ""
15 PASS test("object-fit: bananas;") is null 15 PASS test("object-fit: bananas;") is ""
16 PASS test("object-fit: 23px;") is null 16 PASS test("object-fit: 23px;") is ""
17 PASS test("object-fit: 20%;") is null 17 PASS test("object-fit: 20%;") is ""
18 PASS successfullyParsed is true 18 PASS successfullyParsed is true
19 19
20 TEST COMPLETE 20 TEST COMPLETE
21 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698