blob: c72e6a7951b50dd7613a9e849467b998e80820dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<title>Long vertical gradient with top border.</title>
<!-- This is a regression test for crbug.com/241486 -->
<style>
div {
padding: 0px;
margin: 0px;
border-top: 1px solid black;
width: 100px;
height: 33000px;
background-image: -webkit-linear-gradient(top, green 0%, green 100%);
background-image: -moz-linear-gradient(top, green 0%, green 100%);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|