Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / zoom / text / zoom-em-units.html
bloba1b1e43b04e05923c988ee2e29c444f6c19724a6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body {
6 zoom: 2;
8 rect {
9 fill : green;
11 div {
12 width: 3em;
13 height: 3em;
14 display: inline-block;
15 background-color: green;
17 </style>
18 </head>
19 <body>
20 Test for crbug.com/245996: This test passes if<br/>
21 there are two green squares of the same size.<br/>
22 <div></div>
23 <svg width="3em" height="3em">
24 <rect x="0" y="0" width="100%" height="100%"/>
25 </svg>
26 </body>
27 </html>