https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c77d6e6ae0395fc6d534ad051dca119a775701f2 authored by Joanmarie Diggs on 10 April 2018, 15:51:52 UTC
accname: Updated tests
Tip revision: c77d6e6
border-bottom-color.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>CSS Test: Border-bottom-color set to hex with three digits with the maximum plus one value of #1000</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="author" title="Jack Moffitt" href="http://metajack.im/"/>
        <link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com"/>
        <link rel="help" href="https://drafts.csswg.org/css-color-4/#hex-notation"/>
        <link rel="match" href="border-color-ref.xht"/>

        <meta name="assert" content="The 'border-bottom-color' set to #1000 is a transparent dark red square." />
        <style type="text/css">
            div.test
            {
                border: 5px solid blue;
                height: 1in;
                width: 1in;
            }
            div.test div
            {
                border-bottom-style: solid;
                border-bottom-width: 1in;
                border-bottom-color: #1000;
                height: 0;
                width: 1in;
            }
        </style>
    </head>
    <body>
        <p>Test passes if there is a transparent square surrounded by a blue border.</p>
        <div class="test"><div></div></div>
    </body>
</html>
back to top