diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/css1/c5517-brdr-s-000.xht')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/css1/c5517-brdr-s-000.xht | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/css1/c5517-brdr-s-000.xht b/testing/web-platform/tests/css/CSS2/css1/c5517-brdr-s-000.xht new file mode 100644 index 0000000000..0136e0ecda --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/css1/c5517-brdr-s-000.xht @@ -0,0 +1,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> |