<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { | |
zoom: 2; | |
} | |
rect { | |
fill : green; | |
} | |
div { | |
width: 3em; | |
height: 3em; | |
display: inline-block; | |
background-color: green; | |
} | |
</style> | |
</head> | |
<body> | |
Test for crbug.com/245996: This test passes if<br/> | |
there are two green squares of the same size.<br/> | |
<div></div> | |
<svg width="3em" height="3em"> | |
<rect x="0" y="0" width="100%" height="100%"/> | |
</svg> | |
</body> | |
</html> |