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

Side by Side Diff: LayoutTests/svg/custom/rounded-rect-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
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('rr1').setAttribute('width', 0);
9 document.getElementById('rr2').setAttribute('width', -100);
10
11 if (window.testRunner)
12 testRunner.notifyDone();
13 });
14 </script>
15 <svg width="200" height="100">
16 <rect width="200" height="100" fill="green"/>
17 <rect id="rr1" width="100" height="100" rx="8" stroke="red" fill="red"/>
18 <rect id="rr2" width="100" height="100" rx="8" stroke="red" fill="red" x="100" />
19 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698