1
0
Fork 0
firefox/testing/web-platform/tests/css/css-backgrounds/border-image-outset-004.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

26 lines
807 B
HTML

<!doctype html>
<title>border-image w/ non-zero outsets</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#border-images">
<link rel="help" href="https://issues.chromium.org/378404999">
<link rel="match" href="reference/ref-filled-green-100px-square.xht">
<style>
#target {
position: absolute;
top: 10px;
left: 10px;
width: 80px;
height: 80px;
background: conic-gradient(rgba(255, 0, 0, 0.5) 0 0), conic-gradient(red 0 0);
border-image: conic-gradient(green 0 0) 1 fill / 10px / 10px;
}
#back {
position: relative;
width: 100px;
height: 100px;
background-color: red;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="back">
<img id="target" src="support/green_color.png">
</div>