gecko-dev/layout/reftests/display-list/1443027-ref.html
Matt Woodrow edb36524ee Bug 1443027 - Add two new tests for merging behaviour. r=mstange
MozReview-Commit-ID: G5vgtSCdRZP

--HG--
extra : rebase_source : 2775e9a67e8262144f572d369873eb133dfbc6e5
2018-03-23 12:20:40 +13:00

46 lines
668 B
HTML

<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta charset="utf-8">
<title>Bug 1443027 - Test merging across multiple paints</title>
<style>
body { opacity: 0.9; }
div {
position: absolute;
transform: translatez(1px);
}
#A {
left: 250px;
top: 50px;
width: 100px;
height: 100px;
background-color: red;
}
#B {
left: 200px;
top: 0px;
width: 100px;
height: 100px;
background-color: yellow;
}
#C {
left: 0px;
top: 0px;
width: 100px;
height: 100px;
background-color: green;
}
</style>
</head>
<body>
<div id="A"></div>
<div id="B"></div>
<div id="C"></div>
</body></html>