https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 52900e8f91575e90ed01bfeacaf8f2ad7c55529d authored by James Graham on 21 March 2018, 15:54:47 UTC
commit f712edbaad27ef27fde23681673a8e7b2e4b8534
Tip revision: 52900e8
ttwf-css3background-border-style-shorthand-missing-bottom.htm
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Backgrounds and Borders Test: border_style</title>
    <link rel="author" title="disound" href="mailto:disound@gmail.com" />
    <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-style" />
    <meta name="flags" content="image" />
    <meta name="assert" content="'Border-style' is a shorthand for the other four. Its four values set the top, right, bottom and left border respectively. A missing left is the same as right, a missing bottom is the same as top, and a missing right is also the same as top." />
    <style>
        #ref {
            background-color: white;
            height: 160px;
            width: 160px;
        }
        #test {
            border: black solid 5px;
            border-style: solid dotted;
            bottom: 160px;
            height: 100px;
            padding: 25px;
            position: relative;
            width: 100px;
        }
    </style>
  </head>
  <body>
    <p>Test passes if there is a white square, left border style is dotted, <strong>bottom border style is solid</strong>, right border style is dotted, top border style is solid.</p>
    <div id="ref"></div>
    <div id="test"></div>
  </body>
</html>
back to top