Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / calc / number-parsing.html
blob44e8d70446b1c79f9ab749daf1868d440cfb2430
1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <script>
5 function assertParsedValue(property, input, expected) {
6 var style = document.createElement('div').style;
7 style.setProperty(property, input);
8 assert_equals(style.getPropertyValue(property), expected, property + ': ' + input);
11 test(function() {
12 assertParsedValue('-webkit-box-ordinal-group', 'calc(6 + 4)', '10');
13 assertParsedValue('-webkit-box-ordinal-group', 'calc(0)', '');
14 assertParsedValue('-webkit-column-span', 'calc(2 - 1)', '');
15 assertParsedValue('-webkit-column-span', 'calc(1 + 2)', '');
16 assertParsedValue('-webkit-column-width', 'calc(1em - 1px)', 'calc(1em - 1px)');
17 assertParsedValue('transition-timing-function', 'cubic-bezier(calc(1 + 2), 0, 1, 1)', '');
18 assertParsedValue('transition-timing-function', 'cubic-bezier(calc(1 / 2), calc(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)');
20 assertParsedValue('grid-row-start', 'calc(1 + 2) test', '3 test');
21 assertParsedValue('grid-row-start', 'calc(1 / 2) test', '');
22 assertParsedValue('font-weight', 'calc(100 + 200)', '');
23 assertParsedValue('flex', 'calc(1 + 2) calc(3 + 4)', '3 7 0%');
24 assertParsedValue('-webkit-filter', 'saturate(calc(4 / 2))', 'saturate(2)');
25 assertParsedValue('-webkit-filter', 'invert(calc(4 / 2))', '');
26 assertParsedValue('-webkit-filter', 'invert(calc(2 / 4))', 'invert(0.5)');
27 assertParsedValue('-webkit-filter', 'brightness(calc(4 / 2))', 'brightness(2)');
28 }, 'Ensure using calc() for CSS numbers does not crash or produce incorrect values.');
29 </script>