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

Side by Side Diff: LayoutTests/svg/custom/circle-update-to-empty.html

Issue 599103005: Make sure m_usePathFallback is always updated when updating shape (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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/custom/circle-update-to-empty-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 src="../../resources/run-after-display.js"></script>
3 <script>
4 if (window.testRunner)
5 testRunner.waitUntilDone();
6
7 runAfterDisplay(function() {
8 document.getElementById('c1').setAttribute('r', 0);
9 document.getElementById('c2').setAttribute('r', -50);
10 if (window.testRunner)
11 testRunner.notifyDone();
12 });
13 </script>
14 <svg width="200" height="100">
15 <rect width="200" height="100" fill="green"/>
16 <circle id="c1" cx="50" cy="50" r="50" stroke="red" fill="red" vector-effect=" non-scaling-stroke"/>
17 <circle id="c2" cx="150" cy="50" r="50" stroke="red" fill="red" vector-effect= "non-scaling-stroke"/>
18 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/circle-update-to-empty-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698