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

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

Issue 1972273002: Let repaint tests test pixels by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 paintAndPixelTest()"> 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()">
4 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"/> 4 <script xlink:href="../../fast/repaint/resources/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 circle.setAttribute("stroke", "none"); 58 circle.setAttribute("stroke", "none");
59 59
60 marker.appendChild(circle); 60 marker.appendChild(circle);
61 defs.appendChild(marker); 61 defs.appendChild(marker);
62 62
63 finishRepaintTest(); 63 finishRepaintTest();
64 } 64 }
65 </script> 65 </script>
66 66
67 </svg> 67 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698