blob: 30b5447a5a6a73b64180517ae3dde4b4b83f3455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
.trigger {
width: 20px;
height: 20px;
background-color: blue;
transform: translateZ(0);
}
.container {
position: relative;
z-index: 0;
top: -10px;
height: 120px;
width: 120px;
padding: 10px;
border: 1px solid black;
}
.box {
position: relative;
height: 100px;
width: 100px;
margin: 10px;
background-color: silver;
}
</style>
</head>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function doTest()
{
if (window.testRunner) {
document.getElementById('layertree').innerText = window.internals.layerTreeAsText(document);
testRunner.notifyDone();
}
}
window.addEventListener('load', doTest, false);
</script>
<body>
<div class="trigger"></div>
<div class="container">
<div class="child box">
<!-- This box doesn't need its own layer. -->
</div>
</div>
<pre id="layertree"></pre>
</body>
</html>
|