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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/textPath-path-change-using-svg-dom-pattern.svg

Issue 1416273002: Remove SVGPathElement.pathSegList and related interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 1 month 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
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" onload="runTest()">
2 <path id="thePath" d="M50 50 L 450 50" />
3 <pattern id="pat" patternUnits="userSpaceOnUse" x="0" y="0" width="400" height ="400">
4 <text x="50" y="100">This text should be ABOVE the other line.</text>
5 <text>
6 <textPath id="theTP" xlink:href="#thePath">This text should be BELOW the o ther line.</textPath>
7 </text>
8 </pattern>
9 <rect width="400" height="400" fill="url(#pat)" stroke="black" stroke-width="1 "/>
10 <script><![CDATA[
11 function runTest() {
12 var path = document.getElementById("thePath");
13 pathSegList = path.pathSegList;
14 pathSegList.clear();
15 pathSeg = path.createSVGPathSegMovetoAbs(50, 150);
16 pathSegList.appendItem(pathSeg);
17 pathSeg = path.createSVGPathSegLinetoAbs(450, 150);
18 pathSegList.appendItem(pathSeg);
19 }
20 ]]></script>
21 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698