chromium/third_party/blink/web_tests/fast/css3-text/css3-text-decoration/text-underline-position/style.css

body {
    -webkit-font-smoothing: none;
}

div {
    border: 5px double;
    padding: 5px;
    diplay: inline;
    text-decoration-skip-ink: none;
}

div.auto {
    text-decoration-style: solid;
    text-decoration-line: underline;
    text-underline-position: auto;
}

div.under {
    text-decoration-style: solid;
    text-decoration-line: underline;
    text-underline-position: under;
}

span.auto {
    text-decoration-style: solid;
    text-decoration-line: underline;
    text-underline-position: auto;
}

span.under {
    text-decoration-style: solid;
    text-decoration-line: underline;
    text-underline-position: under;
}

.box {
    width: 300px;
    height: 100px;
}

.position_absolute {
    position: absolute;
    top: 200px;
    left: 100px;
}