OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../resources/testharness.js"></script> | 2 <script src="../../resources/testharness.js"></script> |
3 <script src="../../resources/testharnessreport.js"></script> | 3 <script src="../../resources/testharnessreport.js"></script> |
4 <script> | 4 <script> |
5 function assertParsedValue(property, input, expected) { | 5 function assertParsedValue(property, input, expected) { |
6 var style = document.createElement('div').style; | 6 var style = document.createElement('div').style; |
7 style.setProperty(property, input); | 7 style.setProperty(property, input); |
8 assert_equals(style.getPropertyValue(property), expected, property + ': ' + in
put); | 8 assert_equals(style.getPropertyValue(property), expected, property + ': ' + in
put); |
9 } | 9 } |
10 | 10 |
11 test(function() { | 11 test(function() { |
12 assertParsedValue('-webkit-box-ordinal-group', 'calc(6 + 4)', '10'); | 12 assertParsedValue('-webkit-box-ordinal-group', 'calc(6 + 4)', '10'); |
13 assertParsedValue('-webkit-box-ordinal-group', 'calc(0)', null); | 13 assertParsedValue('-webkit-box-ordinal-group', 'calc(0)', null); |
14 assertParsedValue('-webkit-column-span', 'calc(2 - 1)', null); | 14 assertParsedValue('-webkit-column-span', 'calc(2 - 1)', null); |
15 assertParsedValue('-webkit-column-span', 'calc(1 + 2)', null); | 15 assertParsedValue('-webkit-column-span', 'calc(1 + 2)', null); |
16 assertParsedValue('-webkit-column-width', 'calc(1em - 1px)', 'calc(1em - 1px)'
); | 16 assertParsedValue('-webkit-column-width', 'calc(1em - 1px)', 'calc(1em - 1px)'
); |
17 assertParsedValue('transition-timing-function', 'cubic-bezier(calc(1 + 2), 0,
1, 1)', null); | 17 assertParsedValue('transition-timing-function', 'cubic-bezier(calc(1 + 2), 0,
1, 1)', null); |
18 assertParsedValue('transition-timing-function', 'cubic-bezier(calc(1 / 2), cal
c(1 - 1), calc(2 - 1), calc(2 * 3))', 'cubic-bezier(0.5, 0, 1, 6)'); | 18 assertParsedValue('transition-timing-function', 'cubic-bezier(calc(1 / 2), cal
c(1 - 1), calc(2 - 1), calc(2 * 3))', 'cubic-bezier(0.5, 0, 1, 6)'); |
19 assertParsedValue('transition-timing-function', 'steps(calc(1 + 2), start)', '
steps(3, start)'); | 19 assertParsedValue('transition-timing-function', 'steps(calc(1 + 2), start)', '
steps(3, start)'); |
20 assertParsedValue('grid-row-start', 'calc(1 + 2) test', '3 test'); | 20 assertParsedValue('grid-row-start', 'calc(1 + 2) test', '3 test'); |
21 assertParsedValue('grid-row-start', 'calc(1 / 2) test', null); | 21 assertParsedValue('grid-row-start', 'calc(1 / 2) test', null); |
22 assertParsedValue('font-weight', 'calc(100 + 200)', null); | 22 assertParsedValue('font-weight', 'calc(100 + 200)', null); |
23 assertParsedValue('flex', 'calc(1 + 2) calc(3 + 4)', '3 7 0%'); | 23 assertParsedValue('flex', 'calc(1 + 2) calc(3 + 4)', '3 7 0%'); |
24 assertParsedValue('-webkit-aspect-ratio', 'calc(1 + 2)/calc(3 + 4)', '3/7'); | |
25 assertParsedValue('-webkit-filter', 'saturate(calc(4 / 2))', 'saturate(2)'); | 24 assertParsedValue('-webkit-filter', 'saturate(calc(4 / 2))', 'saturate(2)'); |
26 assertParsedValue('-webkit-filter', 'invert(calc(4 / 2))', null); | 25 assertParsedValue('-webkit-filter', 'invert(calc(4 / 2))', null); |
27 assertParsedValue('-webkit-filter', 'invert(calc(2 / 4))', 'invert(0.5)'); | 26 assertParsedValue('-webkit-filter', 'invert(calc(2 / 4))', 'invert(0.5)'); |
28 assertParsedValue('-webkit-filter', 'brightness(calc(4 / 2))', 'brightness(2)'
); | 27 assertParsedValue('-webkit-filter', 'brightness(calc(4 / 2))', 'brightness(2)'
); |
29 }, 'Ensure using calc() for CSS numbers does not crash or produce incorrect valu
es.'); | 28 }, 'Ensure using calc() for CSS numbers does not crash or produce incorrect valu
es.'); |
30 </script> | 29 </script> |
OLD | NEW |