Status: PASS | Duration: 6ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-masking/clip-path/reference-nonexisting-existing-local.html
<!DOCTYPE html> <title>CSS Masking: fragment of non valid URL as clip.</title> <link rel="help" href="https://drafts.fxtf.org/css-masking-1/#the-clip-path"> <link rel="match" href="reference/reference-nonexisting-existing-local-ref.html"> <meta name="assert" content="Test ensures that only local URLs with a valid fragment result in a valid clip."/> <style> #target { width: 100px; height: 100px; background-color: green; clip-path: url(notexisting.svg#c); } </style> <div style="background-color: red; width: 100px"> <div id="target"></div> </div> <svg> <clipPath id="c" clipPathUnits="objectBoundingBox"> <circle cx="0.5" cy="0.5" r="0.5"/> </clipPath> </svg>
/css/css-masking/clip-path/reference/reference-nonexisting-existing-local-ref.html
<!DOCTYPE html> <div style="width: 100px; height: 100px; background-color: green"></div>