diff options
Diffstat (limited to 'layout/reftests/bugs/759036-1.html')
-rw-r--r-- | layout/reftests/bugs/759036-1.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/bugs/759036-1.html b/layout/reftests/bugs/759036-1.html new file mode 100644 index 0000000000..851f9c7670 --- /dev/null +++ b/layout/reftests/bugs/759036-1.html @@ -0,0 +1,25 @@ +<!doctype html> +<html> +<head> + <style> + #container { + height: 300px; + width: 300px; + overflow:hidden; + border-radius:30px; + opacity: 0.6; + } + #inner { + width: 380px; + height: 260px; + background-color: #00ff00; + } + </style> +</head> +<body> + <div id="container"> + <div id="inner"> + </div> + </div> +</body> +</html> |