blob: 1c49cd6a0ae604a1149e36c1224d3e2033a4b68f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<script>
eventSender.zoomPageIn();
eventSender.zoomPageIn();
</script>
<style>
body {
background: green;
}
</style>
<p>
This page should have 144% full page zoom, hence the viewport width should
be 800 / 1.44 = 555.6px, which is less than 700 so the background should
go green.
</p>
|