Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/margin-padding-clear/padding-right-036.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Test: Padding-right using centimeters with a minimum plus one value, 1cm</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-08-25 --> <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-padding-right" /> <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#padding-properties" /> <link rel="match" href="padding-left-036-ref.xht"/> <meta name="assert" content="The 'padding-right' property handles a minimum plus one length value in centimeters." /> <style type="text/css"> div { height: 50px; width: 0; } .parent1 { background: red; min-width: 37px } .test1, .test2 { padding-right: 1cm; } .test1 { background: green; } .test2 { background: red; } .child1 { background: green; position: relative; width: 38px; } </style> </head> <body> <p>Test passes if there is <strong>no red</strong>.</p> <div class="parent1"> <div class="test1"></div> </div> <div class="test2"> <div class="child1"></div> </div> </body> </html>
/css/CSS2/margin-padding-clear/padding-left-036-ref.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com"/> <style type="text/css"> #div1 { height: 50px; width: 1cm; background: green; } #div2 { height: 50px; width: 38px; background: green; } </style> </head> <body> <p>Test passes if there is <strong>no red</strong>.</p> <div id="div1"></div> <div id="div2"></div> </body> </html>