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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/overflow/overflow-visible-with-border-radius.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/overflow/overflow-visible-with-border-radius-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <style>
2 div {
3 height:100px;
4 width:100px;
5 margin:20px auto;
6 }
7 #one {
8 overflow:visible;
9 border-radius: 1px;
10 }
11 circle {
12 stroke: #00ff00;
13 stroke-width:10;
14 fill: none;
rwlbuis 2015/11/09 19:07:08 Better pick one style, either add one space after
15 }
16 </style>
17 <div>
18 <svg id="one" height="100" width="100" viewbox="0 0 100 100">
rwlbuis 2015/11/09 19:07:08 Instead of id one you can just use svg to apply cs
19 <circle cx="50" cy="50" r="50"/>
20 </svg>
21 </div>
22
23
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/overflow/overflow-visible-with-border-radius-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698