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

Side by Side Diff: LayoutTests/svg/custom/remove-outline-property-on-root.html

Issue 211193002: Compute correct repaint rect for decorated RenderSVGRoots (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 8 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>
3 if (window.testRunner)
4 testRunner.waitUntilDone();
5 window.onload = function() {
6 setTimeout(function() {
7 requestAnimationFrame(function() {
8 document.querySelector('svg').style.removeProperty('outline');
9 if (window.testRunner)
10 testRunner.notifyDone();
11 });
12 }, 0);
13 };
14 </script>
15 <svg style="outline: 10px solid red" width="100" height="100">
16 <rect width="100" height="100" fill="green"/>
17 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698