gecko-dev/layout/reftests/transform-3d/split-intersect1.html
Miko Mynttinen b004c09d39 Bug 1323797 - Add compositor support for triangle layers (for BasicCompositor backend) - Part 4: Add reftests for plane splitting r=mattwoodrow
MozReview-Commit-ID: Dj8TpIiNzba

--HG--
extra : rebase_source : a6228e1933355e03bc4bdad37e489a590f0b36dd
2017-01-12 02:20:50 +02:00

44 lines
621 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Split intersect 1</title>
<style>
.container {
margin: 0 0;
width: 400px;
height: 400px;
transform-style: preserve-3d;
}
.shape {
margin: 0 0;
position: absolute;
width: 100px;
height: 100px;
}
.first {
background-color: rgba(255,0,0,1);
}
.second {
background-color: rgba(0,255,0,1);
transform: rotateY(0.1deg);
}
</style>
</head>
<body>
<div class="container">
<div class="shape first"></div>
<div class="shape second"></div>
</div>
</body>
</html>