Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / text-zoom.xhtml
blob942005bdaf25cd9af51cb6b8080a10f3bfadda54
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <body>
3 <div style="width: 100px; height: 100px; position: absolute; top: 30px; left: 0; background-color: red;"></div>
4 <div style="width: 200px; height: 200px; position: absolute; top: 30px; left: 0;">
5 <svg id="svgRoot" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
6 <rect id="rect" width="50%" height="50%" fill="green" />
7 </svg>
8 </div>
9 <script>
10 if (window.eventSender)
11 eventSender.textZoomIn();
12 else
13 document.body.appendChild(document.createTextNode("Use the View menu to zoom in. There should be no red."));
14 </script>
15 </body>
16 </html>