fieldset-content-rtl.html (480B)
1 <!DOCTYPE html> 2 <html dir="rtl"> 3 <head> 4 <meta charset="utf-8"> 5 <title>crbug.com/1130174; Non-auto-width block should be right-aligned in an RTL fieldset</title> 6 <link rel="match" href="fieldset-content-rtl-ref.html"> 7 <style> 8 .control { 9 background: blue; 10 width: 200px; 11 height: 1em; 12 } 13 fieldset { 14 border: 2px groove ThreeDFace; 15 margin: 0; 16 padding: 1em; 17 } 18 </style> 19 </head> 20 <body> 21 <fieldset> 22 <label>Label</label> 23 <div class="control"></div> 24 </fieldset> 25 </body> 26 </html>