| OLD | NEW | 
|---|
|  | (Empty) | 
| 1 <!doctype html> |  | 
| 2 <html> |  | 
| 3     <head> |  | 
| 4         <style> |  | 
| 5             #green1 { position: absolute; background-color: green; width: 100px;
     height: 50px; top: 150px; } |  | 
| 6             #green2 { position: absolute; background-color: green; width: 100px;
     height: 50px; top: 250px; } |  | 
| 7         </style> |  | 
| 8     </head> |  | 
| 9     <body> |  | 
| 10         <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=74135"> Aut
    o width is not working for regions</a>.</p> |  | 
| 11         <p>The regions are absolutely positioned, non replaced element.</p> |  | 
| 12         <p>In this case, the regions have the same width, based on the same flow
     thread min/max content.</p> |  | 
| 13         <p>On success, you should not see a red rectangle below.</p> |  | 
| 14         <div id="green1"></div> |  | 
| 15         <div id="green2"></div> |  | 
| 16     </body> |  | 
| 17 </html> |  | 
| OLD | NEW | 
|---|