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

Side by Side Diff: LayoutTests/svg/filters/invalidate-on-child-layout.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
« no previous file with comments | « LayoutTests/svg/filters/filter-width-update.svg ('k') | LayoutTests/svg/hixie/perf/001.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" onload="runRepaintTest()"> 1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" onload="runRepaintAndPixelTest()">
2 <script xlink:href="../../fast/repaint/resources/repaint.js"></script> 2 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"></script >
3 <script> 3 <script>
4 <![CDATA[ 4 <![CDATA[
5 function repaintTest() { 5 function repaintTest() {
6 var circle = document.getElementById("circle"); 6 var circle = document.getElementById("circle");
7 circle.setAttribute("cx", 100); 7 circle.setAttribute("cx", 100);
8 circle.setAttribute("cy", 100); 8 circle.setAttribute("cy", 100);
9 } 9 }
10 ]]> 10 ]]>
11 </script> 11 </script>
12 <defs> 12 <defs>
13 <filter id="filter"> 13 <filter id="filter">
14 <feGaussianBlur stdDeviation="5"/> 14 <feGaussianBlur stdDeviation="5"/>
15 </filter> 15 </filter>
16 </defs> 16 </defs>
17 <g filter="url(#filter)"> 17 <g filter="url(#filter)">
18 <circle id="circle" r="50" cx="50" cy="50" /> 18 <circle id="circle" r="50" cx="50" cy="50" />
19 </g> 19 </g>
20 </svg> 20 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/filters/filter-width-update.svg ('k') | LayoutTests/svg/hixie/perf/001.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698