testing/web-platform/tests/css/css-backgrounds/reference/background_clip_padding-box.html
author Emilio Cobos Álvarez <emilio@crisal.io>
Thu, 10 Jul 2025 09:08:54 +0000 (4 hours ago)
changeset 795952 1d422913e1cb1658224a2d269f8e4c9e80032d29
parent 392912 9415bff8166863f344256c7a3dd14aa5e038e82b
permissions -rw-r--r--
Bug 1976623 - Create drag popups eagerly for now. r=tnikkel,layout-reviewers Trivially restores pre-regression behavior, for now. Differential Revision: https://phabricator.services.mozilla.com/D256769
<!DOCTYPE html>
<html>
<head>
    <title>CSS Backgrounds and Borders Test: background-clip_border-box</title>
    <link rel="author" title="Xiaoyan Jiang" href="mailto:dajiangxiaoyan@126.com">
    <link rel="reviewer" title="Jinlong Zhang" href="mailto:jinlongz@oupeng.com">
    <style type="text/css">
        /* Positioned container allows for the self-describing statement to still
           be visible in the case of failure */
        .container {
            position: absolute;
        }
        .ref {
			background-color: red;
			height: 130px;
			left: 10px;
			top: 10px;
			width: 130px;
			position: absolute;
         }

		 .ref1 {
			height: 130px;
			left: 5px;
			top: 5px;
			width: 130px;
			position: absolute;
			border: blue dotted 5px ;
         }

    </style>
</head>
<body>
<p>Test passes if border is blue and dotted without red background</p>
    <div class="container">
        <div class="ref"></div>
		<div class="ref1"></div>
    </div>
</body>
</html>