Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / border-solid-single-edge-antialias.html
blobd24219cd60f93f99f7295c405c12df48d072c8bf
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .arrow {
6 width: 0;
7 height: 0;
8 margin: 10px;
10 .left, .right{
11 border-top: 19px solid transparent;
12 border-bottom: 19px solid transparent;
14 .up, .down{
15 border-left: 19px solid transparent;
16 border-right: 19px solid transparent;
18 .right { border-left: 61px solid purple; }
19 .left { border-right: 61px solid purple; }
20 .up { border-bottom: 61px solid purple; }
21 .down { border-top: 61px solid purple; }
22 </style>
23 <script>
24 if (window.testRunner) testRunner.dumpAsTextWithPixelResults();
25 </script>
26 </head>
27 <body>
28 <div class="arrow right"></div>
29 <div class="arrow left"></div>
30 <div class="arrow up"></div>
31 <div class="arrow down"></div>
32 </body>
33 </html>