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

Side by Side Diff: LayoutTests/svg/repaint/filter-repaint.svg

Issue 251433002: Remove calls to testRunner testRepaint/repaintSweep* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add focus-ring expectation Created 6 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 | Annotate | Revision Log
« no previous file with comments | « LayoutTests/platform/win/fast/repaint/shadow-multiple-vertical-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" standalone="no"?> 1 <?xml version="1.0" standalone="no"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1 .1/DTD/svg11.dtd"> 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1 .1/DTD/svg11.dtd">
3 <svg width="400" height="400" version="1.1" xmlns="http://www.w3.org/2000/svg"> 3 <svg width="400" height="400" version="1.1" xmlns="http://www.w3.org/2000/svg">
4 <script type="text/javascript"> 4 <script type="text/javascript">
5 if (window.testRunner) { 5 if (window.internals) {
6 testRunner.testRepaint(); 6 window.internals.settings.setForceCompositingMode(true);
7 } 7 }
8 </script> 8 </script>
9 <defs> 9 <defs>
10 <filter id="over" filterUnits="objectBoundingBox" primitiveUnits="objectBounding Box" x="0%" y="0%" width="100%" height="100%"> 10 <filter id="over" filterUnits="objectBoundingBox" primitiveUnits="objectBounding Box" x="0%" y="0%" width="100%" height="100%">
11 <feFlood flood-color="#f00" flood-opacity="0.5" result="res1" x="0%" y="0%" width="75%" height="75%"/> 11 <feFlood flood-color="#f00" flood-opacity="0.5" result="res1" x="0%" y="0%" width="75%" height="75%"/>
12 <feFlood flood-color="#00f" flood-opacity="0.5" result="res2" x="25%" y="25% " width="75%" height="75%"/> 12 <feFlood flood-color="#00f" flood-opacity="0.5" result="res2" x="25%" y="25% " width="75%" height="75%"/>
13 <feComposite in2="res1" in="res2" operator="over"/> 13 <feComposite in2="res1" in="res2" operator="over"/>
14 </filter> 14 </filter>
15 <filter id="in" filterUnits="objectBoundingBox" primitiveUnits="objectBoundingBo x" x="0%" y="0%" width="100%" height="100%"> 15 <filter id="in" filterUnits="objectBoundingBox" primitiveUnits="objectBoundingBo x" x="0%" y="0%" width="100%" height="100%">
16 <feFlood flood-color="#f00" flood-opacity="0.5" result="res1" x="0%" y="0%" width="75%" height="75%"/> 16 <feFlood flood-color="#f00" flood-opacity="0.5" result="res1" x="0%" y="0%" width="75%" height="75%"/>
(...skipping 27 matching lines...) Expand all
44 <text x="70" y="90">in</text> 44 <text x="70" y="90">in</text>
45 <rect x="130" y="10" width="50" height="50" filter="url(#out)"/> 45 <rect x="130" y="10" width="50" height="50" filter="url(#out)"/>
46 <text x="130" y="90">out</text> 46 <text x="130" y="90">out</text>
47 <rect x="10" y="110" width="50" height="50" filter="url(#atop)"/> 47 <rect x="10" y="110" width="50" height="50" filter="url(#atop)"/>
48 <text x="10" y="190">atop</text> 48 <text x="10" y="190">atop</text>
49 <rect x="70" y="110" width="50" height="50" filter="url(#xor)"/> 49 <rect x="70" y="110" width="50" height="50" filter="url(#xor)"/>
50 <text x="70" y="190">xor</text> 50 <text x="70" y="190">xor</text>
51 <rect x="130" y="110" width="50" height="50" filter="url(#arithmetic)"/> 51 <rect x="130" y="110" width="50" height="50" filter="url(#arithmetic)"/>
52 <text x="130" y="190">arithmetic</text> 52 <text x="130" y="190">arithmetic</text>
53 </svg> 53 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/platform/win/fast/repaint/shadow-multiple-vertical-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698