Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: LayoutTests/svg/custom/js-late-marker-and-object-creation.svg

Issue 205263004: Convert svg repaint tests to pixel test only repaint (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove fixedpos Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics /SVG/1.1/DTD/svg11-basic.dtd"> 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics /SVG/1.1/DTD/svg11-basic.dtd">
3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" id="svg-root" width="100%" height="100%" viewBox="0 0 480 360" onload="runRe paintTest()"> 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" id="svg-root" width="100%" height="100%" viewBox="0 0 480 360" onload="runRe paintAndPixelTest()">
4 <script xlink:href="../../fast/repaint/resources/repaint.js"/> 4 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"/>
5 <defs id="defs"> 5 <defs id="defs">
6 <marker id="markerStart" viewBox="0 0 10 10" markerWidth="2" markerHeight="2 " refX="5" refY="5" markerUnits="strokeWidth"> 6 <marker id="markerStart" viewBox="0 0 10 10" markerWidth="2" markerHeight="2 " refX="5" refY="5" markerUnits="strokeWidth">
7 <rect width="10" height="10" fill="red" stroke="none"/> 7 <rect width="10" height="10" fill="red" stroke="none"/>
8 </marker> 8 </marker>
9 <marker id="markerEnd" viewBox="0 0 10 10" markerWidth="2" markerHeight="2" refX="5" refY="5" markerUnits="strokeWidth"> 9 <marker id="markerEnd" viewBox="0 0 10 10" markerWidth="2" markerHeight="2" refX="5" refY="5" markerUnits="strokeWidth">
10 <path d="M 5 0 L 10 10 L 0 10 Z" fill="blue" stroke="none"/> 10 <path d="M 5 0 L 10 10 L 0 10 Z" fill="blue" stroke="none"/>
11 </marker> 11 </marker>
12 </defs> 12 </defs>
13 13
14 <g id="content"/> 14 <g id="content"/>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 marker.appendChild(circle); 59 marker.appendChild(circle);
60 defs.appendChild(marker); 60 defs.appendChild(marker);
61 61
62 if (window.testRunner) 62 if (window.testRunner)
63 testRunner.notifyDone(); 63 testRunner.notifyDone();
64 } 64 }
65 </script> 65 </script>
66 66
67 </svg> 67 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/js-late-gradient-creation.svg ('k') | LayoutTests/svg/custom/js-late-marker-creation.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698