summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/pseudo-first-line-border-width.html
blob: bda1b1d6ff11a752bd7b11dc960a18c78a24d17d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <style>
        body {
            font-family: Ahem;
        }
        p {
            font-size: 100px;
        }
        p:first-line {
            font-size: 10px;
        }
        span {
            border-left: solid 1em green;
        }
    </style>
</head>
    <body>
        <div>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=79526">https://bugs.webkit.org/show_bug.cgi?id=79526</a></div>
        <p>A green 10px border on the left of <span>this,<br>
        is a pass.</span></p>
    </body>
</html>