Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-values/min-length-percent-001.html
<!doctype html> <meta charset="utf-8"> <title>CSS values: min() between pixel and percentage values</title> <link rel="help" href="https://drafts.csswg.org/css-values-4/#comp-func"> <link rel="match" href="reference/200-200-green.html"> <link rel="author" title="Xiaocheng Hu" href="mailto:xiaochengh@chromium.org"> <style> html, body { margin: 0px; padding: 0px; } #parent { width: 400px; } #target { width: min(300px, 25% + 100px, 50px + 50%); height: 200px; background: green; } #fail { width: 200px; height: 200px; position: absolute; z-index: -1; background: red; } </style> <div id=parent> <div id=fail></div> <div id=target></div> </div>
/css/css-values/reference/200-200-green.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> CSS Values and Units Test: Viewport units are interpolated correctly (reference rendering) </title> <link rel="author" title="François REMY" href="mailto:fremycompany.developer@yahoo.fr" / > <style type="text/css"> html, body { margin: 0px; padding: 0px; } html { background: white; overflow: hidden; } #outer { position: relative; background: green; } #outer { width: 200px; height: 200px; } </style> </head> <body> <div id="outer"></div> </body> </html>