| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../resources/rounded-rectangle.js"></script> | |
| 5 <script> | |
| 6 function createShapeElement() { | |
| 7 var stylesheet = document.getElementById("stylesheet"); | |
| 8 var dimensions = { width: 700, height: 500, | |
| 9 shapeX: 25, shapeY: 45, | |
| 10 shapeWidth: 600, shapeHeight: 300, | |
| 11 shapeRadiusX: 100, shapeRadiusY: 150 }; | |
| 12 generateShapeElement("shape-inside", stylesheet.sheet, dimensions, 90); | |
| 13 } | |
| 14 </script> | |
| 15 <style id="stylesheet"> | |
| 16 body { margin: 0; } | |
| 17 </style> | |
| 18 </head> | |
| 19 <body onload="createShapeElement()"> | |
| 20 <div id="shape-inside"></div> | |
| 21 <div> | |
| 22 This test requires the Ahem font. It creates a rounded rectangle shape-insid
e and fills it | |
| 23 with alternating black and white squares as inline content. The middle line
overlaps the top | |
| 24 and bottom rounded corner area. The entire shape-inside should be filled, wi
thout any overflow. | |
| 25 </div> | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |