border-radius-1-ref.html (398B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"> 4 <title>Changes to border-radius bounding rect should invalidate correctly.</title> 5 6 <style> 7 8 body { 9 margin: 0; 10 } 11 12 #background { 13 width: 300px; 14 height: 200px; 15 border-radius: 100px; 16 overflow:hidden; 17 } 18 19 #inner { 20 width: 400px; 21 height: 400px; 22 background-color: red; 23 } 24 </style> 25 26 <div id="background"> 27 <div id="inner"></div> 28 </div>