Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <style>
6 legend {
7 width: 200px;
8 height: 100px;
9 overflow: scroll;
10 border: 2px dashed gray;
11 }
12 div.child {
13 background: lightblue;
14 height: 1000px;
15 }
16 </style>
17 </head>
18 <body>
19 <fieldset>
20 <legend>
21 <div class="child">
22 There should be scrollbars making this area scrollable.
23 </div>
24 </legend>
25 </fieldset>
26 </body>
27 </html>