blob: 7c67b7aedfb9fdf1e357b9ae416c301dfd3cc362 (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.fixed-no-z-index {
position: absolute;
left: 10px;
}
.fixed-with-z-index {
position: fixed;
z-index: 1;
left: 10px;
}
</style>
<script>
if (window.internals && window.eventSender) {
window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
window.internals.setPageScaleFactorLimits(0.5, 0.5);
window.internals.setPageScaleFactor(0.5);
}
if (window.testRunner)
testRunner.dumpAsTextWithPixelResults();
</script>
</head>
<body style="width:2000px;height:2000px;">
<div class="fixed-no-z-index">TEST</div><br>
<div class="fixed-with-z-index">TEST</div>
</body>
</html>
|