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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
<!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-spacing - second value is specified and non-zero in 'vertical-lr' table</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/#dimension-mapping" title="7.2 Dimension Mapping" />
<link rel="help" href="http://www.w3.org/TR/2011/REC-CSS2-20110607/tables.html#separated-borders" title="17.6.1 The separated borders model" />
<link rel="match" href="border-spacing-vrl-002-ref.xht" />
<meta content="ahem" name="flags" />
<meta content="This test checks that second value of 'border-spacing' represents, from left to right, a) spacing between logical table top padding (physical table left padding) and topmost cells and b) inter-row spacing and c) spacing between bottommost cells and logical table bottom padding (physical table right padding)." name="assert" />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css"><![CDATA[
table
{
border-spacing: 0em 0.5em; /* computes to logical vertical border-spacing: 10px */
font: 20px/1 Ahem; /* computes to 20px/20px */
padding: 0em 1.25em; /* computes to padding-left: 25px and padding-right: 25px */
writing-mode: vertical-lr;
}
td
{
height: 1em;
padding: 0em;
width: 0.5em;
}
/*
0px 25px 35px 45px 55px 65px 75px 100px
| padding-left | left | 2nd | middle | 1st | right | padding-right|
| of table | vert. | row | vert. | right | vert. | of table |
| | border | | border | most | border | |
| | spacing| | spacing| row | spacing| |
20| | | | | | | |
px| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
40| | | | | | | |
px| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
60| | | | | | | |
px| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
80| | | | | | | |
px| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
00| | | | | | | |
px| | | | | | | |
*/
div#reference-overlapping-green
{
background-color: green;
height: 6.25em;
position: absolute;
width: 6.25em;
}
div#reference-overlapped-red
{
background-color: red;
height: 6.25em;
position: absolute;
width: 6.25em;
z-index: -1;
}
table#test-overlapped-red
{
background-color: red;
}
table#test-overlapping-green
{
background-color: green;
}
]]></style>
</head>
<body>
<p>Test passes if there is a filled green rectangle and <strong>no red</strong>.</p>
<div id="reference-overlapping-green"></div>
<table id="test-overlapped-red">
<tr><td></td><td></td><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td><td></td><td></td></tr>
</table>
<div id="reference-overlapped-red"></div>
<table id="test-overlapping-green">
<tr><td></td><td></td><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td><td></td><td></td></tr>
</table>
</body>
</html>
|