git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Viewport unit values affected by Comand-+ zoom
[WebKit-https.git]
/
LayoutTests
/
fast
/
css
/
viewport-units-zoom.html
1
<!DOCTYPE html>
2
3
<html>
4
<head>
5
<style>
6
body {
7
margin: 0;
8
}
9
.box {
10
background-color: green;
11
margin-top: 10px;
12
}
13
14
.width {
15
width: 50vw;
16
height: 100px;
17
}
18
</style>
19
</head>
20
<body>
21
<p>Both boxes should be the same width.</p>
22
<div class="box width"></div>
23
<div class="box width" style="zoom:2"></div>
24
</body>
25
</html>