summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/text-overflow-ellipsis-shadow-alpha.html
blob: c49d49a64741f36aae01484b300f16247592262c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <head>
    <style>
      .testDiv {
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 72px;
        width: 2em;
        color: transparent;
        text-shadow: 0px 0px green;
      }
    </style>
  </head>
  <body>
    <div class="testDiv">Blink</div>
  </body>
</html>