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

Side by Side Diff: LayoutTests/fast/shapes/parsing/parsing-shape-margin-expected.txt

Issue 226373002: [CSS Shapes] shape-margin in percentage units always computes to 0px (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove webkit prefixes Created 6 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/parsing/parsing-test-utils.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Test parsing of the CSS shape-margin property. 1 Test parsing of the CSS shape-margin property.
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 getCSSText("shape-margin", "1.5ex") is "1.5ex" 6 PASS getCSSText("shape-margin", "1.5ex") is "1.5ex"
7 PASS getCSSText("shape-margin", "2em") is "2em" 7 PASS getCSSText("shape-margin", "2em") is "2em"
8 PASS getCSSText("shape-margin", "2.5in") is "2.5in" 8 PASS getCSSText("shape-margin", "2.5in") is "2.5in"
9 PASS getCSSText("shape-margin", "3cm") is "3cm" 9 PASS getCSSText("shape-margin", "3cm") is "3cm"
10 PASS getCSSText("shape-margin", "3.5mm") is "3.5mm" 10 PASS getCSSText("shape-margin", "3.5mm") is "3.5mm"
11 PASS getCSSText("shape-margin", "4pt") is "4pt" 11 PASS getCSSText("shape-margin", "4pt") is "4pt"
12 PASS getCSSText("shape-margin", "4.5pc") is "4.5pc" 12 PASS getCSSText("shape-margin", "4.5pc") is "4.5pc"
13 PASS getCSSText("shape-margin", "5px") is "5px" 13 PASS getCSSText("shape-margin", "5px") is "5px"
14 PASS getCSSText("shape-margin", "120%") is "120%"
14 PASS getCSSText("shape-margin", "0") is "0px" 15 PASS getCSSText("shape-margin", "0") is "0px"
15 PASS getCSSText("shape-margin", "-5px") is "" 16 PASS getCSSText("shape-margin", "-5px") is ""
16 PASS getCSSText("shape-margin", "none") is "" 17 PASS getCSSText("shape-margin", "none") is ""
17 PASS getCSSText("shape-margin", "120%") is ""
18 PASS getCSSText("shape-margin", "'string'") is "" 18 PASS getCSSText("shape-margin", "'string'") is ""
19 PASS getComputedStyleValue("shape-margin", "0") is "0px" 19 PASS getComputedStyleValue("shape-margin", "0") is "0px"
20 PASS getComputedStyleValue("shape-margin", "1px") is "1px" 20 PASS getComputedStyleValue("shape-margin", "1px") is "1px"
21 PASS getComputedStyleValue("shape-margin", "-5em") is "0px" 21 PASS getComputedStyleValue("shape-margin", "-5em") is "0px"
22 PASS getComputedStyleValue("shape-margin", "identifier") is "0px" 22 PASS getComputedStyleValue("shape-margin", "identifier") is "0px"
23 PASS getComputedStyleValue("shape-margin", "'string'") is "0px" 23 PASS getComputedStyleValue("shape-margin", "'string'") is "0px"
24 PASS getChildComputedStyle("shape-margin", "0", "0") is "0px" 24 PASS getChildComputedStyle("shape-margin", "0", "0") is "0px"
25 PASS getChildComputedStyle("shape-margin", "0", "1px") is "1px" 25 PASS getChildComputedStyle("shape-margin", "0", "1px") is "1px"
26 PASS getChildComputedStyle("shape-margin", "1px", "-1em") is "0px" 26 PASS getChildComputedStyle("shape-margin", "1px", "-1em") is "0px"
27 PASS getChildComputedStyle("shape-margin", "2px", "1px") is "1px" 27 PASS getChildComputedStyle("shape-margin", "2px", "1px") is "1px"
28 PASS successfullyParsed is true 28 PASS successfullyParsed is true
29 29
30 TEST COMPLETE 30 TEST COMPLETE
31 31
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/parsing/parsing-test-utils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698