summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/ttwf-css3background-border-color.htm
blob: 6a3cb5dce58883fd26fd7bcc8f2c9029cd1aa13a (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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Backgrounds and Borders Test: border_color</title>
    <link rel="author" title="disound" href="mailto:disound@gmail.com" />
    <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-color" />
    <meta name="flags" content="image" />
    <meta name="assert" content="'Border-color' is a shorthand for the four 'border-*-color' properties. The 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-top-color: yellow;
            border-right-color: black;
            border-bottom-color: blue;
            border-left-color: green;
            bottom: 160px;
            height: 100px;
            padding: 25px;
            position: relative;
            width: 100px;
        }
    </style>
  </head>
  <body>
    <p>Test passes if there is a white square, left border is green, bottom border is blue, right border is black, top border is yellow.</p>
    <div id="ref"></div>
    <div id="test"></div>
  </body>
</html>