gecko-dev/layout/reftests/bugs/759036-1.html
Benoit Girard 99cc55b9f2 Bug 1024148 - Part 2: Merge nsDisplayOpacity into nsDisplayBackgroundColor. r=mattwoodrow
--HG--
extra : rebase_source : c48cc799414ff83b74caff8df5503a743dbf74b1
2014-06-14 11:10:45 -04:00

26 lines
372 B
HTML

<!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>