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

Side by Side Diff: LayoutTests/css-parser/font-size-adjust-expected.txt

Issue 943463002: Initial implementation of font-size-adjust (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add some tests which need a rebaseline to TestExpectation Created 5 years, 9 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 Verifies that font-size-adjust property and its value are properly parsed.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS successfullyParsed is true
7
8 TEST COMPLETE
9 This is a testharness.js-based test.
10 PASS CSS.supports('fontSizeAdjust', '1.5') should return true
11 PASS e.style['fontSizeAdjust'] = '1.5' should set the value
12 PASS Serialization should round-trip after setting e.style['fontSizeAdjust'] = ' 1.5'
13 PASS CSS.supports('fontSizeAdjust', '0.5') should return true
14 PASS e.style['fontSizeAdjust'] = '0.5' should set the value
15 PASS Serialization should round-trip after setting e.style['fontSizeAdjust'] = ' 0.5'
16 PASS CSS.supports('fontSizeAdjust', '0') should return true
17 PASS e.style['fontSizeAdjust'] = '0' should set the value
18 PASS Serialization should round-trip after setting e.style['fontSizeAdjust'] = ' 0'
19 PASS CSS.supports('fontSizeAdjust', 'none') should return true
20 PASS e.style['fontSizeAdjust'] = 'none' should set the value
21 PASS Serialization should round-trip after setting e.style['fontSizeAdjust'] = ' none'
22 PASS CSS.supports('fontSizeAdjust', '-0.5') should return false
23 PASS e.style['fontSizeAdjust'] = '-0.5' should not set the value
24 PASS CSS.supports('fontSizeAdjust', '-1.5') should return false
25 PASS e.style['fontSizeAdjust'] = '-1.5' should not set the value
26 Harness: the test ran to completion.
27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698