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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/use-pathseglist-change.html

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 <!DOCTYPE HTML>
2 <script>
3 if (window.testRunner)
4 testRunner.waitUntilDone();
5
6 window.onload = function() {
7 document.getElementById("path").pathSegList[2].y = 200;
8 requestAnimationFrame(function() {
9 if (window.testRunner)
10 testRunner.notifyDone();
11 });
12 };
13 </script>
14 <svg height="200" width="300">
15 <path id="path" d="M50,50 L100,50 L100,100 Z" style="fill:green;"/>
16 <use xlink:href="#path" x="100"/>
17 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698