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

Side by Side Diff: LayoutTests/fast/regions/last-region-border-radius-expected.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 <html>
3 <head>
4 <style>
5 #article {
6 width: 50px;
7 height: 100px;
8 background-color: green;
9 }
10
11 #region {
12 width: 50px;
13 height: 50px;
14 border: 5px solid blue;
15 border-radius: 10px;
16 position: absolute;
17 top: 100px;
18 left: 50px;
19 }
20 </style>
21 </head>
22 <body>
23 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103684"> [C SS Regions] border-radius on a region causes overflow to be hidden</a>.</p>
24 <p>On success, you should not see any red below.</p>
25 <div id="region">
26 <div id="article"></div>
27 </div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698