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

Side by Side Diff: LayoutTests/svg/repaint/text-pattern-update.html

Issue 1331053002: Propagate resource-triggered repaints to text node children of <text> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Name/comment updates. Created 5 years, 3 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 | « no previous file | LayoutTests/svg/repaint/text-pattern-update-2.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src=../../fast/repaint/resources/text-based-repaint.js></script>
3 <script src=../../resources/ahem.js></script>
4 <svg>
5 <pattern id="pat" patternUnits="userSpaceOnUse" width="200" height="200">
6 <rect width="200" height="100" fill="red"/>
7 <rect y="100" width="200" height="100" fill="green"/>
8 </pattern>
9 <text y="80" fill="url(#pat)" font-size="100" font-family="Ahem">X</text>
10 </svg>
11 <script>
12 function repaintTest() {
13 var pattern = document.querySelector('pattern');
14 pattern.setAttribute('y', 100);
15 }
16 onload = runRepaintTest;
17 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/repaint/text-pattern-update-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698