ex-calc-expression-001.html (578B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Test: Calc expression using multiple ex operands</title> 4 <link rel="match" href="ex-calc-expression-001-ref.html"> 5 <link rel="help" href="https://drafts.csswg.org/css-values/#funcdef-calc"> 6 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 7 <style> 8 /* 9 This is a regression test for: 10 https://github.com/servo/servo/pull/18807 11 https://bugzilla.mozilla.org/show_bug.cgi?id=1407092 12 */ 13 div { 14 width: calc(1ex + 1ex); 15 height: calc(1ex + 1ex); 16 background: green; 17 } 18 </style> 19 <div></div>