layout/reftests/bugs/421069-ref2.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

michael@0 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
michael@0 2 "http://www.w3.org/TR/html4/strict.dtd">
michael@0 3 <html lang="en-US">
michael@0 4 <head>
michael@0 5 <title>Testcase, bug 421069</title>
michael@0 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
michael@0 7 <meta http-equiv="Content-Style-Type" content="text/css">
michael@0 8 <style type="text/css">
michael@0 9
michael@0 10 body > div { position: absolute; top: 10px; left: 10px; }
michael@0 11 img { margin-left: 10px; }
michael@0 12
michael@0 13 .p0 { margin-top: 10.0px; }
michael@0 14 .p1 { margin-top: 50.1px; }
michael@0 15 .p2 { margin-top: 90.2px; }
michael@0 16 .p3 { margin-top: 130.3px; }
michael@0 17 .p4 { margin-top: 170.4px; }
michael@0 18 .p5 { margin-top: 210.5px; }
michael@0 19 .p6 { margin-top: 250.6px; }
michael@0 20 .p7 { margin-top: 290.7px; }
michael@0 21 .p8 { margin-top: 330.8px; }
michael@0 22 .p9 { margin-top: 370.9px; }
michael@0 23
michael@0 24 body > div > div, body > div > div {
michael@0 25 background-color: white;
michael@0 26 }
michael@0 27
michael@0 28 div { margin: 0; border-spacing: 0; }
michael@0 29 td { padding: 0; }
michael@0 30
michael@0 31 .big { width: 30px; height: 30px; }
michael@0 32 .small { width: 19px; height: 19px; }
michael@0 33
michael@0 34 div.tl {
michael@0 35 margin-left: 50px;
michael@0 36 border-top: 1px solid black;
michael@0 37 border-left: 1px solid black;
michael@0 38 }
michael@0 39
michael@0 40 div.br {
michael@0 41 margin-left: 90px;
michael@0 42 border-bottom: 1px solid black;
michael@0 43 border-right: 1px solid black;
michael@0 44 }
michael@0 45
michael@0 46 div.tr {
michael@0 47 margin-left: 130px;
michael@0 48 border-top: 1px solid black;
michael@0 49 border-right: 1px solid black;
michael@0 50 }
michael@0 51
michael@0 52 div.bl {
michael@0 53 margin-left: 170px;
michael@0 54 border-bottom: 1px solid black;
michael@0 55 border-left: 1px solid black;
michael@0 56 }
michael@0 57
michael@0 58 div.tl.big {
michael@0 59 margin-left: 210px;
michael@0 60 border-top: 1px solid black;
michael@0 61 border-right: 2px solid black;
michael@0 62 border-bottom: 2px solid black;
michael@0 63 border-left: 1px solid black;
michael@0 64 }
michael@0 65 div.br.big {
michael@0 66 margin-left: 250px;
michael@0 67 border-top: 2px solid black;
michael@0 68 border-right: 1px solid black;
michael@0 69 border-bottom: 1px solid black;
michael@0 70 border-left: 2px solid black;
michael@0 71 }
michael@0 72 div.tr.big {
michael@0 73 margin-left: 290px;
michael@0 74 border-top: 1px solid black;
michael@0 75 border-right: 1px solid black;
michael@0 76 border-bottom: 2px solid black;
michael@0 77 border-left: 2px solid black;
michael@0 78 }
michael@0 79 div.bl.big {
michael@0 80 margin-left: 330px;
michael@0 81 border-top: 2px solid black;
michael@0 82 border-right: 2px solid black;
michael@0 83 border-bottom: 1px solid black;
michael@0 84 border-left: 1px solid black;
michael@0 85 }
michael@0 86
michael@0 87 </style>
michael@0 88 </head>
michael@0 89 <body>
michael@0 90
michael@0 91 <div><img src="square-outline-32x32.png" class="p0"></div>
michael@0 92 <div><img src="square-outline-32x32.png" class="p1"></div>
michael@0 93 <div><img src="square-outline-32x32.png" class="p2"></div>
michael@0 94 <div><img src="square-outline-32x32.png" class="p3"></div>
michael@0 95 <div><img src="square-outline-32x32.png" class="p4"></div>
michael@0 96 <div><img src="square-outline-32x32.png" class="p5"></div>
michael@0 97 <div><img src="square-outline-32x32.png" class="p6"></div>
michael@0 98 <div><img src="square-outline-32x32.png" class="p7"></div>
michael@0 99 <div><img src="square-outline-32x32.png" class="p8"></div>
michael@0 100 <div><img src="square-outline-32x32.png" class="p9"></div>
michael@0 101
michael@0 102 <div><div class="tl small p0"></div></div>
michael@0 103 <div><div class="tl small p1"></div></div>
michael@0 104 <div><div class="tl small p2"></div></div>
michael@0 105 <div><div class="tl small p3"></div></div>
michael@0 106 <div><div class="tl small p4"></div></div>
michael@0 107 <div><div class="tl small p5"></div></div>
michael@0 108 <div><div class="tl small p6"></div></div>
michael@0 109 <div><div class="tl small p7"></div></div>
michael@0 110 <div><div class="tl small p8"></div></div>
michael@0 111 <div><div class="tl small p9"></div></div>
michael@0 112
michael@0 113 <div><div class="br small p0"></div></div>
michael@0 114 <div><div class="br small p1"></div></div>
michael@0 115 <div><div class="br small p2"></div></div>
michael@0 116 <div><div class="br small p3"></div></div>
michael@0 117 <div><div class="br small p4"></div></div>
michael@0 118 <div><div class="br small p5"></div></div>
michael@0 119 <div><div class="br small p6"></div></div>
michael@0 120 <div><div class="br small p7"></div></div>
michael@0 121 <div><div class="br small p8"></div></div>
michael@0 122 <div><div class="br small p9"></div></div>
michael@0 123
michael@0 124 <div><div class="tr small p0"></div></div>
michael@0 125 <div><div class="tr small p1"></div></div>
michael@0 126 <div><div class="tr small p2"></div></div>
michael@0 127 <div><div class="tr small p3"></div></div>
michael@0 128 <div><div class="tr small p4"></div></div>
michael@0 129 <div><div class="tr small p5"></div></div>
michael@0 130 <div><div class="tr small p6"></div></div>
michael@0 131 <div><div class="tr small p7"></div></div>
michael@0 132 <div><div class="tr small p8"></div></div>
michael@0 133 <div><div class="tr small p9"></div></div>
michael@0 134
michael@0 135 <div><div class="bl small p0"></div></div>
michael@0 136 <div><div class="bl small p1"></div></div>
michael@0 137 <div><div class="bl small p2"></div></div>
michael@0 138 <div><div class="bl small p3"></div></div>
michael@0 139 <div><div class="bl small p4"></div></div>
michael@0 140 <div><div class="bl small p5"></div></div>
michael@0 141 <div><div class="bl small p6"></div></div>
michael@0 142 <div><div class="bl small p7"></div></div>
michael@0 143 <div><div class="bl small p8"></div></div>
michael@0 144 <div><div class="bl small p9"></div></div>
michael@0 145
michael@0 146 <div><div class="tl big p0"></div></div>
michael@0 147 <div><div class="tl big p1"></div></div>
michael@0 148 <div><div class="tl big p2"></div></div>
michael@0 149 <div><div class="tl big p3"></div></div>
michael@0 150 <div><div class="tl big p4"></div></div>
michael@0 151 <div><div class="tl big p5"></div></div>
michael@0 152 <div><div class="tl big p6"></div></div>
michael@0 153 <div><div class="tl big p7"></div></div>
michael@0 154 <div><div class="tl big p8"></div></div>
michael@0 155 <div><div class="tl big p9"></div></div>
michael@0 156
michael@0 157 <div><div class="br big p0"></div></div>
michael@0 158 <div><div class="br big p1"></div></div>
michael@0 159 <div><div class="br big p2"></div></div>
michael@0 160 <div><div class="br big p3"></div></div>
michael@0 161 <div><div class="br big p4"></div></div>
michael@0 162 <div><div class="br big p5"></div></div>
michael@0 163 <div><div class="br big p6"></div></div>
michael@0 164 <div><div class="br big p7"></div></div>
michael@0 165 <div><div class="br big p8"></div></div>
michael@0 166 <div><div class="br big p9"></div></div>
michael@0 167
michael@0 168 <div><div class="tr big p0"></div></div>
michael@0 169 <div><div class="tr big p1"></div></div>
michael@0 170 <div><div class="tr big p2"></div></div>
michael@0 171 <div><div class="tr big p3"></div></div>
michael@0 172 <div><div class="tr big p4"></div></div>
michael@0 173 <div><div class="tr big p5"></div></div>
michael@0 174 <div><div class="tr big p6"></div></div>
michael@0 175 <div><div class="tr big p7"></div></div>
michael@0 176 <div><div class="tr big p8"></div></div>
michael@0 177 <div><div class="tr big p9"></div></div>
michael@0 178
michael@0 179 <div><div class="bl big p0"></div></div>
michael@0 180 <div><div class="bl big p1"></div></div>
michael@0 181 <div><div class="bl big p2"></div></div>
michael@0 182 <div><div class="bl big p3"></div></div>
michael@0 183 <div><div class="bl big p4"></div></div>
michael@0 184 <div><div class="bl big p5"></div></div>
michael@0 185 <div><div class="bl big p6"></div></div>
michael@0 186 <div><div class="bl big p7"></div></div>
michael@0 187 <div><div class="bl big p8"></div></div>
michael@0 188 <div><div class="bl big p9"></div></div>
michael@0 189
michael@0 190 </body>
michael@0 191 </html>

mercurial