28 lines
398 B
HTML
28 lines
398 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="utf-8">
|
|
<title>Changes to border-radius bounding rect should invalidate correctly.</title>
|
|
|
|
<style>
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
#background {
|
|
width: 300px;
|
|
height: 200px;
|
|
border-radius: 100px;
|
|
overflow:hidden;
|
|
}
|
|
|
|
#inner {
|
|
width: 400px;
|
|
height: 400px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
|
|
<div id="background">
|
|
<div id="inner"></div>
|
|
</div>
|