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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/overflow/overflow-visible-with-border-radius-expected.html

Issue 1420563006: SVG should respect overflow:visible even with border-radius (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 <style>
2 div {
3 height:100px;
4 width:100px;
5 margin:20px auto;
6 }
7 #one {
8 overflow:visible;
9 }
10 circle {
11 stroke: #00ff00;
12 stroke-width:10;
13 fill: none;
14 }
15 </style>
16 <div>
17 <svg id="one" height="100" width="100" viewbox="0 0 100 100">
18 <circle cx="50" cy="50" r="50"/>
19 </svg>
20 </div>
21
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698