chromium/third_party/blink/web_tests/svg/zoom/text/zoom-text-and-geometry-expected.html

<!DOCTYPE html>
<html>
<head>
<style>
body {
    font-size : 16px;
    font-family : "Times New Roman";
    zoom: 2;
}
rect {
    fill : green;
    stroke: green;
}
</style>
</head>
<body>
    crbug.com/245996: Text should zoom like geometry.<br/>
    This test passes if there is no red.<br/>
    <svg version="1.1" width="32px" height="32px">
        <rect x="10" y="10" width="12" height="12"/>
    </svg>
    <svg version="1.1" width="2em" height="2em">
        <rect x="10" y="10" width="12" height="12"/>
    </svg>
    <svg version="1.1" width="2em" height="2em" viewbox="0 0 32 32">
        <rect x="10" y="10" width="12" height="12"/>
    </svg>
    <svg version="1.1" width="32px" height="32px">
        <rect x="10" y="10" width="12" height="12"/>
    </svg>
    <svg version="1.1" width="2em" height="2em">
        <rect x="10" y="10" width="12" height="12"/>
    </svg>
    <svg version="1.1" width="2em" height="2em" viewbox="0 0 32 32">
        <rect x="10" y="10" width="12" height="12"/>
    </svg>
</body>
</html>