layout/reftests/forms/fieldset/overflow-hidden-ref.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html><head>
michael@0 3 <meta charset="utf-8">
michael@0 4 <title>Testcase for bug 971933</title>
michael@0 5 <style type="text/css">
michael@0 6 html,body {
michael@0 7 color:black; background-color:white; font-size:16px;
michael@0 8 }
michael@0 9 #f0 div::before { content: "f0"; }
michael@0 10 #f1 div::before { content: "f1"; }
michael@0 11 #f2 div::before { content: "f2"; }
michael@0 12 #f3 div::before { content: "f3"; }
michael@0 13 #f4 div::before { content: "f4"; }
michael@0 14 #f5 div::before { content: "f5"; }
michael@0 15 #f6 div::before { content: "f6"; }
michael@0 16 #f7 div::before { content: "f7"; }
michael@0 17 #f8 div::before { content: "f8"; }
michael@0 18 #f9 div::before { content: "f9"; }
michael@0 19
michael@0 20 legend { background:pink; height:30px; }
michael@0 21 div { background:yellow; height:100px; overflow:hidden; }
michael@0 22 fieldset {
michael@0 23 border-width:0;
michael@0 24 padding:0;
michael@0 25 margin:0;
michael@0 26 margin-top:6px;
michael@0 27 outline:1px dotted black;
michael@0 28 height:auto;
michael@0 29 background:grey;
michael@0 30
michael@0 31 padding-bottom:0px;
michael@0 32 padding-top:5px;
michael@0 33 border:1px solid blue;
michael@0 34 border-top-width:7px;
michael@0 35 }
michael@0 36
michael@0 37 #f1 { }
michael@0 38 #f2 { border-top-width:0; }
michael@0 39 #f3 { border-width:0; }
michael@0 40 #f4 { border-bottom-width:0; }
michael@0 41 #f5 { border-width:0; padding:0; }
michael@0 42 #f6 { border-width:0; padding-bottom:0; }
michael@0 43 #f7 { border-width:0; padding-top:0; }
michael@0 44 #f8 { padding-top:0; }
michael@0 45 #f9 { padding-bottom:0; }
michael@0 46 #f0 { padding:0; }
michael@0 47
michael@0 48 #c2 fieldset { height:29px; }
michael@0 49
michael@0 50 #c3 fieldset { height:39px; }
michael@0 51
michael@0 52 #c4 fieldset { height:29px; }
michael@0 53 #c4 legend { height: 20px; }
michael@0 54
michael@0 55 #c5 legend { height:21px; }
michael@0 56 #c5 fieldset { border-top-width:31px; }
michael@0 57
michael@0 58 .col { float:left; width:10ch; margin-left:6px; }
michael@0 59
michael@0 60 #c1 div { height:3px; } #c1 #f6 div, #c1 #f9 div, #c1 #f0 div { height:0; }
michael@0 61 #c1 #f5 div { height:0px; }
michael@0 62
michael@0 63 #c2 div { height:9px; }
michael@0 64 #c2 #f1 { padding-bottom:3px; } #c2 #f1 div { height:9px;}
michael@0 65 #c2 #f2 { padding-bottom:3px; } #c2 #f2 div { height:3px; }
michael@0 66 #c2 #f3 { padding-bottom:3px; } #c2 #f3 div { height:3px; }
michael@0 67 #c2 #f4 { padding-bottom:3px; }
michael@0 68 #c2 #f5 div { height:0; }
michael@0 69 #c2 #f6 div { height:0; }
michael@0 70 #c2 #f7 { padding-bottom:3px; } #c2 #f7 div { height:3px; }
michael@0 71 #c2 #f8 { padding-bottom:3px; } #c2 #f8 div { height:9px; }
michael@0 72 #c2 #f9 div { height:6px; }
michael@0 73 #c2 #f0 div { height:6px; }
michael@0 74
michael@0 75 #c3 fieldset { padding-bottom:3px; }
michael@0 76 #c3 #f1 div { height:19px; }
michael@0 77 #c3 #f2 div { height:12px; }
michael@0 78 #c3 #f3 div { height:12px; }
michael@0 79 #c3 #f4 div { height:19px; }
michael@0 80 #c3 #f5 { padding-bottom:0; } #c3 #f5 div { height:9px; }
michael@0 81 #c3 #f6 { padding-bottom:0; } #c3 #f6 div { height:9px; }
michael@0 82 #c3 #f7 div { height:12px; }
michael@0 83 #c3 #f8 div { height:19px; }
michael@0 84 #c3 #f9 { padding-bottom:0; } #c3 #f9 div { height:16px; }
michael@0 85 #c3 #f0 { padding-bottom:0; } #c3 #f0 div { height:16px; }
michael@0 86
michael@0 87 #c4 fieldset { padding-bottom:3px; }
michael@0 88 #c4 #f1 div { height:19px; }
michael@0 89 #c4 #f2 div { height:12px; }
michael@0 90 #c4 #f3 div { height:12px; }
michael@0 91 #c4 #f4 div { height:19px; }
michael@0 92 #c4 #f5 { padding-bottom:0; } #c4 #f5 div { height:9px; }
michael@0 93 #c4 #f6 { padding-bottom:0; } #c4 #f6 div { height:9px; }
michael@0 94 #c4 #f7 div { height:12px; }
michael@0 95 #c4 #f8 div { height:19px; }
michael@0 96 #c4 #f9 { padding-bottom:0; } #c4 #f9 div { height:16px; }
michael@0 97 #c4 #f0 { padding-bottom:0; } #c4 #f0 div { height:16px; }
michael@0 98
michael@0 99 #c5 #f1 div { height:18px; }
michael@0 100 #c5 #f2 div { height:18px; }
michael@0 101 #c5 #f3 div { height:18px; }
michael@0 102 #c5 #f4 div { height:18px; }
michael@0 103 #c5 #f5 div { height:15px; }
michael@0 104 #c5 #f6 div { height:15px; }
michael@0 105 #c5 #f7 div { height:18px; }
michael@0 106 #c5 #f8 div { height:18px; }
michael@0 107 #c5 #f9 div { height:15px; }
michael@0 108 #c5 #f0 div { height:15px; }
michael@0 109
michael@0 110 </style>
michael@0 111 </head>
michael@0 112 <body>
michael@0 113 <span id=c1 class=col>C1
michael@0 114 <fieldset id=f1><legend>LEGEND</legend><div></div></fieldset>
michael@0 115 <fieldset id=f2><legend>LEGEND</legend><div></div></fieldset>
michael@0 116 <fieldset id=f3><legend>LEGEND</legend><div></div></fieldset>
michael@0 117 <fieldset id=f4><legend>LEGEND</legend><div></div></fieldset>
michael@0 118 <fieldset id=f5><legend>LEGEND</legend><div></div></fieldset>
michael@0 119 <fieldset id=f6><legend>LEGEND</legend><div></div></fieldset>
michael@0 120 <fieldset id=f7><legend>LEGEND</legend><div></div></fieldset>
michael@0 121 <fieldset id=f8><legend>LEGEND</legend><div></div></fieldset>
michael@0 122 <fieldset id=f9><legend>LEGEND</legend><div></div></fieldset>
michael@0 123 <fieldset id=f0><legend>LEGEND</legend><div></div></fieldset>
michael@0 124 </span>
michael@0 125 <span id=c2 class=col>C2
michael@0 126 <fieldset id=f1><legend>LEGEND</legend><div></div></fieldset>
michael@0 127 <fieldset id=f2><legend>LEGEND</legend><div></div></fieldset>
michael@0 128 <fieldset id=f3><legend>LEGEND</legend><div></div></fieldset>
michael@0 129 <fieldset id=f4><legend>LEGEND</legend><div></div></fieldset>
michael@0 130 <fieldset id=f5><legend>LEGEND</legend><div></div></fieldset>
michael@0 131 <fieldset id=f6><legend>LEGEND</legend><div></div></fieldset>
michael@0 132 <fieldset id=f7><legend>LEGEND</legend><div></div></fieldset>
michael@0 133 <fieldset id=f8><legend>LEGEND</legend><div></div></fieldset>
michael@0 134 <fieldset id=f9><legend>LEGEND</legend><div></div></fieldset>
michael@0 135 <fieldset id=f0><legend>LEGEND</legend><div></div></fieldset>
michael@0 136 </span>
michael@0 137 <span id=c3 class=col>C3
michael@0 138 <fieldset id=f1><legend>LEGEND</legend><div></div></fieldset>
michael@0 139 <fieldset id=f2><legend>LEGEND</legend><div></div></fieldset>
michael@0 140 <fieldset id=f3><legend>LEGEND</legend><div></div></fieldset>
michael@0 141 <fieldset id=f4><legend>LEGEND</legend><div></div></fieldset>
michael@0 142 <fieldset id=f5><legend>LEGEND</legend><div></div></fieldset>
michael@0 143 <fieldset id=f6><legend>LEGEND</legend><div></div></fieldset>
michael@0 144 <fieldset id=f7><legend>LEGEND</legend><div></div></fieldset>
michael@0 145 <fieldset id=f8><legend>LEGEND</legend><div></div></fieldset>
michael@0 146 <fieldset id=f9><legend>LEGEND</legend><div></div></fieldset>
michael@0 147 <fieldset id=f0><legend>LEGEND</legend><div></div></fieldset>
michael@0 148 </span>
michael@0 149 <span id=c4 class=col>C4
michael@0 150 <fieldset id=f1><legend>LEGEND</legend><div></div></fieldset>
michael@0 151 <fieldset id=f2><legend>LEGEND</legend><div></div></fieldset>
michael@0 152 <fieldset id=f3><legend>LEGEND</legend><div></div></fieldset>
michael@0 153 <fieldset id=f4><legend>LEGEND</legend><div></div></fieldset>
michael@0 154 <fieldset id=f5><legend>LEGEND</legend><div></div></fieldset>
michael@0 155 <fieldset id=f6><legend>LEGEND</legend><div></div></fieldset>
michael@0 156 <fieldset id=f7><legend>LEGEND</legend><div></div></fieldset>
michael@0 157 <fieldset id=f8><legend>LEGEND</legend><div></div></fieldset>
michael@0 158 <fieldset id=f9><legend>LEGEND</legend><div></div></fieldset>
michael@0 159 <fieldset id=f0><legend>LEGEND</legend><div></div></fieldset>
michael@0 160 </span>
michael@0 161 <span id=c5 class=col>C5
michael@0 162 <fieldset id=f1><legend>LEGEND</legend><div></div></fieldset>
michael@0 163 <fieldset id=f2><legend>LEGEND</legend><div></div></fieldset>
michael@0 164 <fieldset id=f3><legend>LEGEND</legend><div></div></fieldset>
michael@0 165 <fieldset id=f4><legend>LEGEND</legend><div></div></fieldset>
michael@0 166 <fieldset id=f5><legend>LEGEND</legend><div></div></fieldset>
michael@0 167 <fieldset id=f6><legend>LEGEND</legend><div></div></fieldset>
michael@0 168 <fieldset id=f7><legend>LEGEND</legend><div></div></fieldset>
michael@0 169 <fieldset id=f8><legend>LEGEND</legend><div></div></fieldset>
michael@0 170 <fieldset id=f9><legend>LEGEND</legend><div></div></fieldset>
michael@0 171 <fieldset id=f0><legend>LEGEND</legend><div></div></fieldset>
michael@0 172 </span>
michael@0 173
michael@0 174 </body>
michael@0 175 </html>

mercurial