summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/column-border-002.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/tables/column-border-002.xht')
-rw-r--r--testing/web-platform/tests/css/CSS2/tables/column-border-002.xht77
1 files changed, 77 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/tables/column-border-002.xht b/testing/web-platform/tests/css/CSS2/tables/column-border-002.xht
new file mode 100644
index 0000000000..ea3d8ad2b6
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/tables/column-border-002.xht
@@ -0,0 +1,77 @@
+<!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: Column-group border property</title>
+ <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#columns" />
+ <meta name="assert" content="A border can be set on a table column group." />
+ <style type="text/css">
+ .table
+ {
+ background: black;
+ border-collapse: collapse;
+ display: table;
+ }
+ .cg1
+ {
+ border: 5px dotted green;
+ display: table-column-group;
+ }
+ .cg2
+ {
+ display: table-column-group;
+ }
+ .col
+ {
+ display: table-column;
+ }
+ .tr
+ {
+ display: table-row;
+ }
+ .td
+ {
+ display: table-cell;
+ height: 0.25in;
+ width: 0.25in;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if the left half of the black box below has green dotted border.</p>
+ <div class="table">
+ <div class="cg1">
+ <div class="col"></div>
+ <div class="col"></div>
+ </div>
+ <div class="cg2">
+ <div class="col"></div>
+ <div class="col"></div>
+ </div>
+ <div class="tr">
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ </div>
+ <div class="tr">
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ </div>
+ <div class="tr">
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ </div>
+ <div class="tr">
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ <div class="td"></div>
+ </div>
+ </div>
+ </body>
+</html> \ No newline at end of file