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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/animations/script-tests/svgenum-animation-3.js

Issue 1870983002: Only hit-test SVG <text> foreground (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase; return early. Created 4 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/hittest/text-small-font-size.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 description("Test SVGLengthAdjustType enumeration animations"); 1 description("Test SVGLengthAdjustType enumeration animations");
2 createSVGTestCase(); 2 createSVGTestCase();
3 3
4 var clickX = 1;
pdr. 2016/04/08 21:36:29 It looks like this is for SVGAnimationTestCase.js?
fs 2016/04/09 19:32:29 Done.
5
4 // Setup test document 6 // Setup test document
5 var text = createSVGElement("text"); 7 var text = createSVGElement("text");
6 text.setAttribute("id", "text"); 8 text.setAttribute("id", "text");
7 text.setAttribute("y", "50"); 9 text.setAttribute("y", "50");
8 text.setAttribute("textLength", "200"); 10 text.setAttribute("textLength", "200");
9 text.textContent = "Stretched text"; 11 text.textContent = "Stretched text";
10 text.setAttribute("onclick", "executeTest()"); 12 text.setAttribute("onclick", "executeTest()");
11 rootSVGElement.appendChild(text); 13 rootSVGElement.appendChild(text);
12 14
13 var animate = createSVGElement("animate"); 15 var animate = createSVGElement("animate");
(...skipping 24 matching lines...) Expand all
38 ["animation", 1.999, sample1], 40 ["animation", 1.999, sample1],
39 ["animation", 2.001, sample2], 41 ["animation", 2.001, sample2],
40 ["animation", 3.999, sample2], 42 ["animation", 3.999, sample2],
41 ["animation", 4.001, sample2] 43 ["animation", 4.001, sample2]
42 ]; 44 ];
43 45
44 runAnimationTest(expectedValues); 46 runAnimationTest(expectedValues);
45 } 47 }
46 48
47 var successfullyParsed = true; 49 var successfullyParsed = true;
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/hittest/text-small-font-size.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698