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

Side by Side Diff: LayoutTests/svg/animations/animate-viewport-overflow.html

Issue 220853002: SVG does not respect overflow:visible. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
OLDNEW
(Empty)
1 <!doctype html>
2 <head>
3 <script src="../../fast/repaint/resources/text-based-repaint.js" type="t ext/javascript"></script>
4 <script>
5 function repaintTest() {
6 var svg = document.getElementById("svg");
7 svg.pauseAnimations();
8 svg.setCurrentTime(5);
9 }
10 </script>
11 <style>
12 div {
13 height:100px; width:100px;
14 }
15 svg { overflow: visible; }
16 </style>
17 </head>
18 <body onload="runRepaintAndPixelTest()">
19 <div>
20 <svg id="svg" height="100" width="100" viewbox="0 0 100 100">
21 <rect y="200" width="100" height="100" fill="red">
22 <animate attributeName="fill" to="green" dur="1s " begin="1s" fill="freeze"/>
23 </rect>
24 </svg>
25 </div>
26 <div></div>
27 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698