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

Side by Side Diff: LayoutTests/platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context.html

Issue 12254005: Merge 141769 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 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
3 <html>
4 <head>
5 <style type="text/css">
6 .box {
7 position: absolute;
8 width: 50px;
9 height: 50px;
10 }
11
12 .scrollable {
13 -webkit-overflow-scrolling: touch;
14 }
15
16 .indicator {
17 background: red;
18 z-index: 1;
19 }
20
21 .test {
22 background: green;
23 }
24 </style>
25 </head>
26 <body>
27
28 <!-- Check that touch overflow scrollable elements get a stacking context. -->
29 <div class="scrollable box">
30 <div class="indicator box"></div>
31 </div>
32 <div class="test box"></div>
33
34 </body>
35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698