testing/web-platform/tests/css/css-masking/clip/clip-absolute-positioned-001.html
author Paul Adenot <paul@paul.cx>
Tue, 15 Jul 2025 08:36:21 +0000 (11 hours ago)
changeset 796624 8b4dd515e78c642a9744dfd44f2f78fc59439587
parent 392912 9415bff8166863f344256c7a3dd14aa5e038e82b
permissions -rw-r--r--
Bug 1838735 - Change NS_WARNING to MOZ_LOG for real-time limit warning in CubebUtils. r=media-playback-reviewers,karlt Differential Revision: https://phabricator.services.mozilla.com/D257222
<!DOCTYPE html>
<html>
<head>
    <title>CSS Masking: Test clip property and rect function on div with position: absolute</title>
    <link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
    <link rel="help" href="http://www.w3.org/TR/css-masking-1/#clipping-paths">
    <link rel="help" href="http://www.w3.org/TR/css-masking-1/#clip-property">
    <link rel="match" href="reference/clip-absolute-positioned-ref.html">
    <meta name="assert" content="The clip property should clip elements whose
    layout are governed by the CSS box model and that are abolutely positioned
    with 'position: absolute;'. On pass you should see a green square and no
    red.">
</head>
<body>
    <p>The test passes if there is a green square and no red.</p>
    <div style="width: 100px; height: 100px; border: solid red 50px; position: absolute; background-color: green; clip: rect(50px, 150px, 150px, 50px);"></div>
</body>
</html>