haikuwebkit/LayoutTests/fast/css/viewport-units-zoom.html

26 lines
434 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
}
.box {
background-color: green;
margin-top: 10px;
}
.width {
width: 50vw;
height: 100px;
}
</style>
</head>
<body>
<p>Both boxes should be the same width.</p>
<div class="box width"></div>
<div class="box width" style="zoom:2"></div>
</body>
</html>