testing/web-platform/tests/css/css-backgrounds/border-radius-applies-to-001.htm
author Gabriel Luong <gabriel.luong@gmail.com>
Sun, 13 Jul 2025 02:28:40 +0000 (14 hours ago)
changeset 796385 23185ed855a5b168943bde8ebe8ec946cd83f675
parent 606595 895e9f55c489ee2cc6e5bb3b1039f863e5b72809
permissions -rw-r--r--
Bug 1972159 - Part 25: Enable Compose Homepage by default and remove associated settings and Nimbus flags r=android-reviewers,devota Differential Revision: https://phabricator.services.mozilla.com/D254598
<!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: 'Border-radius' applied to element with 'display' set to inline</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/css3-background/#border-radius" />
        <meta name="assert" content="When 'border-radius' is applied to an element with 'displaye: inline' it produces rounded corners." />
        <style type="text/css">
            div
            {
                border: 10px solid green;
                border-radius: 10px;
                display: inline;
            }
        </style>
    </head>
    <body>
        <p>Test passes if there is a box with rounded corners below.</p>
        <div>Filler Text</div>
    </body>
</html>