blob: 58bdce27fdfeb159f14b2fcb5c79f17207b57784 [file] [log] [blame]
zalan@apple.com3bc1f3d2016-03-18 01:53:58 +00001<!DOCTYPE html>
2<html>
3<head>
4<title>This tests that we position composited content properly when they are clipped to the viewport.</title>
5<style>
6 .jiggle {
7 width: 20px;
8 height: 5px;
9 position: absolute;
10 background: green;
11 }
12</style>
13</head>
14<body>
15<script>
16var leftPos = 0;
17for (i = 0; i < 50; ++i) {
18 var element = document.createElement("div");
19 element.className = "jiggle";
20 element.style.top = (6 * i) + "px";
21 element.style.left = leftPos + "px";
22 document.body.appendChild(element);
23 leftPos -= 0.1;
24}
25</script>
26</html>