summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/gradients/unprefixed-list-item-gradient.html
blob: e9a2588ced6481f68b4b2300cec7e73c504aea45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<style>
/* List item should be a 1em by 1em round gradient bullet. */
ul { list-style-image: radial-gradient(closest-side, red, blue 99%, transparent 100%); }
</style>
</head>
<body>
<ul>
<li>&nbsp;
<li>&nbsp;
<li>&nbsp;
</ul>

<script>
if (window.testRunner) {
  testRunner.dumpAsTextWithPixelResults();
}
</script>