Index: LayoutTests/imported/csswg-test/css-writing-modes-3/border-conflict-element-vrl-012.xht |
diff --git a/LayoutTests/imported/csswg-test/css-writing-modes-3/border-conflict-element-vrl-012.xht b/LayoutTests/imported/csswg-test/css-writing-modes-3/border-conflict-element-vrl-012.xht |
new file mode 100644 |
index 0000000000000000000000000000000000000000..939c0410192f9057777c9cb64e43619537936c9c |
--- /dev/null |
+++ b/LayoutTests/imported/csswg-test/css-writing-modes-3/border-conflict-element-vrl-012.xht |
@@ -0,0 +1,187 @@ |
+<!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 Writing Modes Test: Border conflict resolution - cell wins over row, cell wins over rowgroup and cell wins over table (compound)</title> |
+ |
+ <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> |
+ <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#logical-directions" title="6.2 Flow-relative Directions" /> |
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution" title="17.6.2.1 Border conflict resolution" /> |
+ <link rel="match" href="../css21/reference/ref-filled-green-100px-square.xht" /> |
+ |
+ <meta content="" name="flags" /> |
+ <meta content="This test checks that, in border-collapsing model, when 'border-style' values and 'border-width' values are identical, then the 'border-color' set on a cell wins over the 'border-color' set on a row (5th table), the 'border-color' set on a cell wins over the 'border-color' set on a row group (tfoot in 4th table, thead in 3rd table, tbody in 2nd table) and the 'border-color' set on a cell wins over the 'border-color' set on a table element (1st table)." name="assert" /> |
+ |
+ <style type="text/css"><![CDATA[ |
+ table |
+ { |
+ border-collapse: collapse; |
+ direction: ltr; |
+ height: 20px; |
+ -webkit-writing-mode: vertical-rl; |
+ } |
+ |
+ td |
+ { |
+ padding: 0px; |
+ } |
+ |
+ |
+ |
+ table#first |
+ { |
+ border-right: red solid 100px; |
+ } |
+ |
+ table#first td |
+ { |
+ border-right: green solid 100px; |
+ } |
+ |
+ |
+ |
+ table#second > tbody |
+ { |
+ border-right: red solid 100px; |
+ } |
+ |
+ table#second td |
+ { |
+ border-right: green solid 100px; |
+ } |
+ |
+ |
+ |
+ table#third > thead |
+ { |
+ border-right: red solid 100px; |
+ } |
+ |
+ table#third td |
+ { |
+ border-right: green solid 100px; |
+ } |
+ |
+ |
+ |
+ table#fourth > tfoot |
+ { |
+ border-right: red solid 100px; |
+ } |
+ |
+ table#fourth td |
+ { |
+ border-right: green solid 100px; |
+ } |
+ |
+ |
+ |
+ table#fifth tr |
+ { |
+ border-right: red solid 100px; |
+ } |
+ |
+ table#fifth td |
+ { |
+ border-right: green solid 100px; |
+ } |
+ |
+ div#reference-overlapped-red |
+ { |
+ background-color: red; |
+ bottom: 100px; |
+ height: 100px; |
+ position: relative; |
+ width: 100px; |
+ z-index: -1; |
+ } |
+ ]]></style> |
+ |
+ </head> |
+ |
+ <body> |
+ |
+ <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> |
+ |
+ <table id="first"> |
+ |
+ <colgroup><col></col><col></col></colgroup> |
+ |
+ <tbody> |
+ |
+ <tr> |
+ <td></td> <td></td> |
+ </tr> |
+ |
+ </tbody> |
+ |
+ </table> |
+ |
+ |
+ <table id="second"> |
+ |
+ <colgroup><col></col><col></col></colgroup> |
+ |
+ <tbody> |
+ |
+ <tr> |
+ <td></td> <td></td> |
+ </tr> |
+ |
+ </tbody> |
+ |
+ </table> |
+ |
+ |
+ <table id="third"> |
+ |
+ <colgroup><col></col><col></col></colgroup> |
+ |
+ <thead> |
+ |
+ <tr> |
+ <td></td> <td></td> |
+ </tr> |
+ |
+ </thead> |
+ |
+ </table> |
+ |
+ |
+ <table id="fourth"> |
+ |
+ <colgroup><col></col><col></col></colgroup> |
+ |
+ <tfoot> |
+ |
+ <tr> |
+ <td></td> <td></td> |
+ </tr> |
+ |
+ </tfoot> |
+ |
+ </table> |
+ |
+ |
+ |
+ <table id="fifth"> |
+ |
+ <colgroup><col></col><col></col></colgroup> |
+ |
+ <tbody> |
+ |
+ <tr> |
+ <td></td> <td></td> |
+ </tr> |
+ |
+ </tbody> |
+ |
+ </table> |
+ |
+ |
+ <div id="reference-overlapped-red"></div> |
+ |
+ </body> |
+</html> |