summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/css1/c5517-brdr-s-000.xht
blob: 0136e0ecdacbac7046225f7cce51e2313b0ca1b7 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Test: border-style</title>
  <link rel="help" href="http://www.w3.org/TR/REC-CSS1#border-style"/>
  <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <style type="text/css"><![CDATA[
    p { padding: 1em; }
   .one {border-style: dotted; border-color: navy; border-width: thick;}
   .two {border-style: dashed; border-color: navy; border-width: thick;}
   .three {border-style: solid; border-color: navy; border-width: thick;}
   .four {border-style: double; border-color: navy; border-width: thick;}
   .five {border-style: groove; border-color: orange; border-width: thick;}
   .six {border-style: ridge; border-color: orange; border-width: thick;}
   .seven {border-style: inset; border-color: orange; border-width: thick;}
   .eight {border-style: outset; border-color: orange; border-width: thick;}
   .nine {border-style: double groove; border-color: blue; border-width: thick;}
   .ten {border-style: dotted double dashed solid; border-color: blue; border-width: thick;}
   .eleven {border-style: none; border-color: red; border-width: thick;}
  ]]></style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties"/>
 </head>
 <body>
  <p>The borders below should be as described:</p>
  <p class="one">
   Blue and dotted.
  </p>
  <p class="two">
   Blue and dashed.
  </p>
  <p class="three">
   Blue and solid.
  </p>
  <p class="four">
   Blue and double.
  </p>
  <p class="five">
   Orange and groove.
  </p>
  <p class="six">
   Orange and ridge.
  </p>
  <p class="seven">
   Orange and inset.
  </p>
  <p class="eight">
   Orange and outset.
  </p>
  <p class="nine">
   Blue and double on top and bottom; Blue and grooved on the left and right.
  </p>
  <p class="ten">
   Blue borders which are, in clockwise order from top: dotted, double, dashed, solid.
  </p>
  <p class="eleven">
   This paragraph should have no border at all.
  </p>
 </body>
</html>