<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>