wpt / css / css-inline / initial-letter / initial-letter-with-tab.html

Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-inline/initial-letter/initial-letter-with-tab.html

<!DOCTYPE html>
<html>
<head>
<title>Tests initial letter should handle tabular character</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline/#initial-letter-styling">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
<link rel="match" href="initial-letter-with-tab-ref.html">
<style>
    .sample {
        font-family: Ahem;
        font-size: 20px;
        line-height: 24px;
    }

    .initial-letter::first-letter {
        initial-letter: 3 drop;
        color: lime;
        font-size: 100px;   /* should be ignored in rendering */
        line-height: 50px;  /* should be ignored in rendering */
    }

    .sample { white-space: pre; }
    .initial-letter::first-letter { background: yellow; }
</style>
</head>
<body>
<div class="sample initial-letter">&#9;Abc
def
ghi
jkl
mno</div>
</body>
</html>

/css/css-inline/initial-letter/initial-letter-with-tab-ref.html

<!DOCTYPE html>
<html>
<head>
<title>Tests initial letter should handle tabular character</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline/#initial-letter-styling">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
<style>
    .sample {
        font-family: Ahem;
        font-size: 20px;
        line-height: 24px;
    }

    .fake-initial-letter {
        background: lime;
        float: left;
        height: 80px;
        margin-top: 2px;
        width: 80px;
    }

    .fake-initial-letter-tab {
        background: yellow;
        float: left;
        height: 80px;
        margin-top: 2px;
        width: 160px;
    }
</style>
</head>
<body>
<div class="sample"><div class="fake-initial-letter-tab"></div>
<div class="fake-initial-letter"></div>
bc<br>def<br>ghi<br>jkl<br>mno<br>
</div>
</body>
</html>