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

Side by Side Diff: LayoutTests/fast/regions/last-region-border-radius.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 -webkit-flow-into: flow;
7 width: 50px;
8 height: 100px;
9 background-color: green;
10 }
11
12 #region {
13 -webkit-flow-from: flow;
14 width: 50px;
15 height: 50px;
16 border: 5px solid blue;
17 border-radius: 10px;
18 position: absolute;
19 top: 100px;
20 left: 50px;
21 }
22
23 #redBox {
24 width: 50px;
25 height: 30px;
26 background-color: red;
27 position: absolute;
28 top: 175px;
29 left: 55px;
30 }
31 </style>
32 </head>
33 <body>
34 <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>
35 <p>On success, you should not see any red below.</p>
36 <div id="article"></div>
37 <div id="redBox"></div>
38 <div id="region"></div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698