summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-bordercollapse/bordercolor-3-ref.html
blob: 145b1a05cb116663f4acc99698ae65fb58c39cd4 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html >
 <head>
  <title>CSS Test: HTML bordercolor Attribute</title>
  <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/>
  <link rel="help" href="RELEVANT_SPEC_SECTION"/>
  <meta name="assert" content="Figure out which rules are ignored and how."/>
  <style type="text/css">
    html { color: blue; }
    table { margin: 0.5em; }
    .thin, .elemthin { border-width: thin; border-style: outset; }
    .thin * { border-width: thin; border-style: inset; }
    .orange, .orange *, .elemorange { border-color: orange; }
  </style>
 </head>
 <body>
  <table class="orange thin">
    <tr><td>A<td>A
  </table>

  <table class="elemorange elemthin">
    <tr><td>B<td>B
  </table>

  <table class=orange style="border-collapse: collapse;">
    <tr><td style="border-right-width: thin; border-right-style: solid;
        border-bottom-width: thin; border-bottom-style: solid;">C
        <td style="border-bottom-width: thin; border-bottom-style: solid;">C
    <tr><td style="border-right-width: thin; border-right-style: solid;">C<td>C
  </table>

  <table class=orange style="border-collapse: collapse;">
    <tr><td style="border-right-width: thin; border-right-style: solid;">D<td>D
    <tr><td style="border-right-width: thin; border-right-style: solid;">D<td>D
  </table>

  <table>
    <tr><td>E<td>E
    <tr><td>E<td>E
  </table>

  <table>
    <tr><td>F<td>F
  </table>

  <table style="border-collapse: collapse;">
    <tr class=orange><td style="border-right-width: thin; border-right-style: solid;
        border-bottom-width: thin; border-bottom-style: solid;">G
        <td style="border-bottom-width: thin; border-bottom-style: solid;">G
    <tr class=orange><td style="border-right-width: thin; border-right-style: solid;">G<td>G
  </table>

  <table class="elemorange thin">
    <tr><td>H<td>H
  </table>
 </body>
</html>