git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
More displaylist tests, and minor cleanup
[WebKit-https.git]
/
LayoutTests
/
displaylists
/
layer-dispay-list.html
1
<!DOCTYPE html>
2
3
<html>
4
<head>
5
<style>
6
.box {
7
width: 100px;
8
height: 100px;
9
background-color: green;
10
border: 2px solid blue;
11
}
12
13
.composited {
14
-webkit-transform: translateZ(0);
15
}
16
</style>
17
<script src="resources/dump-target-display-list.js"></script>
18
</head>
19
<body>
20
<div id="target" class="composited box">
21
</div>
22
<pre id="output"></pre>
23
</body>
24
</html>