summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/gradients/crash-on-1px-border.html
blob: ff71d2da333397674c772a937dd750dff21d27d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<head>
<style>
.thin {
  border-bottom: 1px solid;
  background: -webkit-gradient(linear, 0% 100%, 0% 100%, from(red), to(blue))
}
</style>
<script>
if (window.testRunner)
  window.testRunner.dumpAsText();
</script>
</head>
<body>
<h1>Linear gradient with 1px border-bottom. Should not crash</h1>
<div class="thin"></div>