| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML> | |
| 2 <html> | |
| 3 <head> | |
| 4 <link rel="stylesheet" href="resources/svg_tests.css"> | |
| 5 <script src="resources/svg_canvas_helper.js"></script> | |
| 6 <script> | |
| 7 if (window.testRunner) | |
| 8 testRunner.waitUntilDone(); | |
| 9 </script> | |
| 10 </head> | |
| 11 <body> | |
| 12 <h2><a href="http://www.w3.org/html/wg/drafts/srcset/w3c-srcset">srcset</a> te
stcases for SVG</h2> | |
| 13 <div class="test"> | |
| 14 <h3>Canvas relative SVG with explicit dimensions - 1x</h3> | |
| 15 <div class="expected">expected<br/> | |
| 16 <img id="svg9" src="resources/relativesrcset.svg" width="100" height="50"> | |
| 17 </div> | |
| 18 <div class="actual">actual<br/> | |
| 19 <canvas id="canvas5"></canvas> | |
| 20 </div> | |
| 21 This test should show an SVG image drawn into a canvas. The canvas and image
should look the same and both should be 100x50.<br/> | |
| 22 <code class="stats" id="code15"></code> | |
| 23 <br clear="all"/> | |
| 24 </div> | |
| 25 <script> | |
| 26 window.addEventListener('load', function(){ | |
| 27 drawCanvas('svg9', 'canvas5', 100, 50); | |
| 28 printSizes('svg9', 'code15'); | |
| 29 if (window.testRunner) | |
| 30 testRunner.notifyDone(); | |
| 31 }); | |
| 32 </script> | |
| 33 | |
| 34 </body> | |
| 35 </html> | |
| OLD | NEW |