blob: 365f7652fe88a6f79f0e8453d6d4f0968313a2b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html><head>
<style>
div {
outline: 1px solid black;
}
</style>
</head><body>
You should see no red, only green<br>
<div style="overflow: scroll; height: 200px; z-index: 2; position: relative; background-color: red;"></div>
<div class="displayport" reftest-displayport-h="500" style="overflow: scroll; position: relative; margin-top: -200px; height: 200px;">
<div style="z-index: 10; position: absolute; width: 100%; height: 500px; bottom: -300px;">
<div style="height: 200px; background-color: lime;"></div>
</div>
</div>
</body></html>
|