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

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

Issue 1134733005: SVG <use> should update when the referenced <path> is updating pathSegList. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changed test case location and added prefix Created 5 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
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-pathseglist-change-expected.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>
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
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-pathseglist-change-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698