| 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 p{ | 5 p{ |
| 6 text-align:center; | 6 text-align:center; |
| 7 background:#ccc; | 7 background:#ccc; |
| 8 border-radius:50% 50% 0 0 / 100%; | 8 border-radius:50% 50% 0 0 / 100%; |
| 9 width:300px; | 9 width:300px; |
| 10 height:150px; | 10 height:150px; |
| 11 } | 11 } |
| 12 p.all{ | 12 p.all{ |
| 13 border:1px solid #000; | 13 border:1px solid #000; |
| 14 } | 14 } |
| 15 p.bottom{ | 15 p.bottom{ |
| 16 border-bottom:1px solid #000; | 16 border-bottom:1px solid #000; |
| 17 } | 17 } |
| 18 </style> | 18 </style> |
| 19 <script> | 19 <script> |
| 20 if (window.testRunner) | 20 if (window.testRunner) |
| 21 testRunner.dumpAsText(true); | 21 testRunner.dumpAsText(true); |
| 22 </script> | 22 </script> |
| 23 </head> | 23 </head> |
| 24 <body> | 24 <body> |
| 25 <p class="bottom">Corners on top should be rounded and a border of 1px black on
the bottom.</p> | 25 <p class="bottom">Corners on top should be rounded and a border of 1px black on
the bottom.</p> |
| 26 <p class="all">Corners on top should be rounded and a border of 1px black all ar
ound.</p> | 26 <p class="all">Corners on top should be rounded and a border of 1px black all ar
ound.</p> |
| 27 </body> | 27 </body> |
| 28 </html> | 28 </html> |
| OLD | NEW |