blob: 31d3e698103e2aa6dd54ca0e675e624e3f9d141a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.box {
height: 100px;
width: 100px;
background: no-repeat -webkit-repeating-linear-gradient(red, blue, green 0);
}
</style>
</head>
<body>
<!-- This test should not hang. You should see a green square. -->
<div class="box"></div>
</body>
</html>
|