1
0
Fork 0
firefox/testing/web-platform/tests/compat/webkit-linear-gradient-line-top.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

23 lines
766 B
HTML

<!doctype html>
<title>-webkit-linear-gradient(top)</title>
<link rel="author" title="Xidorn Quan" href="me@upsuper.org">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<link rel="help" href="https://compat.spec.whatwg.org/#css-gradients-webkit-linear-gradient">
<meta name="assert" content="'top' in -webkit-linear-gradient is equivalent to 'to bottom' in modern syntax">
<link rel="match" href="green-ref.html">
<meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-4400">
<style>
#outer {
width: 100px;
height: 100px;
overflow: hidden;
}
#inner {
width: 100px;
height: 200px;
background-image: -webkit-linear-gradient(top, green 50%, red 50%);
}
</style>
<div id="outer">
<div id="inner"></div>
</div>