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

Side by Side Diff: LayoutTests/fast/css/aspect-ratio-parsing-tests-expected.txt

Issue 647723002: Remove -webkit-aspect-ratio. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Forgot to remove webkitAspectRatio from virtual/stable. :( Created 6 years, 2 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
(Empty)
1 CSS Aspect Ratio Parsing Test
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS testParsing("aspectRatioTest", "2/1", "-webkit-aspect-ratio") is "2/1"
7 PASS testParsing("aspectRatioTest", "1/1", "-webkit-aspect-ratio") is "1/1"
8 PASS testParsing("aspectRatioTest", "1/4", "-webkit-aspect-ratio") is "1/4"
9 PASS testParsing("aspectRatioTest", "1 / 2", "-webkit-aspect-ratio") is "1/2"
10 PASS testParsing("aspectRatioTest", "1.2 / 2", "-webkit-aspect-ratio") is "1.2/2 "
11 PASS testParsing("aspectRatioTest", "2 / 0.5", "-webkit-aspect-ratio") is "2/0.5 "
12 PASS testParsing("aspectRatioTest", "inherit", "-webkit-aspect-ratio") is "inher it"
13 PASS testParsing("aspectRatioTest", "none", "-webkit-aspect-ratio") is "none"
14 PASS testParsing("aspectRatioTest", "1 2", "-webkit-aspect-ratio") is "none"
15 PASS testParsing("aspectRatioTest", "a/1", "-webkit-aspect-ratio") is "none"
16 PASS testParsing("aspectRatioTest", "1/a", "-webkit-aspect-ratio") is "none"
17 PASS testParsing("aspectRatioTest", "abc123", "-webkit-aspect-ratio") is "none"
18 PASS testParsing("aspectRatioTest", "1", "-webkit-aspect-ratio") is "none"
19 PASS testParsing("aspectRatioTest", "1 / 0", "-webkit-aspect-ratio") is "none"
20 PASS testParsing("aspectRatioTest", "0 / 1", "-webkit-aspect-ratio") is "none"
21 PASS testParsing("aspectRatioTest", "0 / 0", "-webkit-aspect-ratio") is "none"
22 PASS testParsing("aspectRatioTest", "-1 / 8", "-webkit-aspect-ratio") is "none"
23 PASS testParsing("aspectRatioTest", "1 / -9", "-webkit-aspect-ratio") is "none"
24 PASS testParsing("aspectRatioTest", "-1 / -4", "-webkit-aspect-ratio") is "none"
25 PASS successfullyParsed is true
26
27 TEST COMPLETE
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698