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
/
extent-includes-shadow.html
1
<!DOCTYPE html>
2
3
<html>
4
<head>
5
<style>
6
#target {
7
height: 200px;
8
width: 200px;
9
-webkit-transform: translateZ(0);
10
}
11
12
.shadowed {
13
position: absolute;
14
top: 50px;
15
left: 50px;
16
width: 100px;
17
height: 100px;
18
background-color: blue;
19
box-shadow: 10px 20px 12px black;
20
}
21
</style>
22
<script src="resources/dump-target-display-list.js"></script>
23
</head>
24
<body>
25
<div id="target">
26
<div class="shadowed"></div>
27
</div>
28
<pre id="output"></pre>
29
</body>
30
</html>