| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 fieldset legend{ | 5 fieldset legend{ |
| 6 padding: 17px; | 6 padding: 17px; |
| 7 border : 1px solid blue; | 7 border : 1px solid blue; |
| 8 } | 8 } |
| 9 </style> | 9 </style> |
| 10 </head> | 10 </head> |
| 11 <body> | 11 <body> |
| 12 <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=78684">78684</a>: L
ayout issue with fieldset legend element </p> | 12 <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=78684">78684</a>: L
ayout issue with fieldset legend element </p> |
| 13 <p> For this test to pass, you should see a full border with out any clippin
g, especially under blue box(legend element). </p> | 13 <p> For this test to pass, you should see a full border with out any clippin
g, especially under blue box(legend element). </p> |
| 14 <form> | 14 <form> |
| 15 <fieldset> | 15 <fieldset> |
| 16 <legend> | 16 <legend> |
| 17 </legend> | 17 </legend> |
| 18 </fieldset> | 18 </fieldset> |
| 19 </form> | 19 </form> |
| 20 </body> | 20 </body> |
| 21 </html> | 21 </html> |
| OLD | NEW |