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

Side by Side Diff: LayoutTests/svg/in-html/overflow-repaint.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 document.getElementById("svg").style.overflow="visible";
7 }
8 </script>
9 <style>
10 div {
11 height:100px; width:100px;
12 }
13 div + div { background: red; }
14 </style>
15 </head>
16 <body onload="runRepaintAndPixelTest()">
17 <div>
18 <svg id="svg" height="100" width="100" viewbox="0 0 100 100">
19 <rect y="100" width="100" height="100" fill="green"/>
20 </svg>
21 </div>
22 <div></div>
23 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698