upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / LayoutTests / fast / gradients / crash-on-1px-border.html
1 <head>
2 <style>
3 .thin {
4   border-bottom: 1px solid;
5   background: -webkit-gradient(linear, 0% 100%, 0% 100%, from(red), to(blue))
6 }
7 </style>
8 <script>
9 if (window.layoutTestController)
10   window.layoutTestController.dumpAsText();
11 </script>
12 </head>
13 <body>
14 <h1>Linear gradient with 1px border-bottom. Should not crash</h1>
15 <div class="thin"></div>