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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/composited-nested-sticky-table-expected.html

Issue 2733633002: Handle nested position:sticky elements correctly (compositor) (Closed)
Patch Set: Fix unittest Created 3 years, 9 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 <style>
2 body {
3 margin: 0;
4 }
5
6 table {
7 background: red;
8 border-collapse: collapse;
9 }
10
11 td, th {
12 height: 50px;
13 width: 50px;
14 padding: 0;
15 }
16
17 th {
18 position: absolute;
19 top: 25px;
20 background: green;
21 }
22
23 .container {
24 overflow: hidden;
25 width: 100px;
26 height: 200px;
27 outline: 2px solid black;
28 }
29 </style>
30
31 <div class="container">
32 <table>
33 <thead>
34 <tr>
35 <th></th>
36 </tr>
37 </thead>
38 <tbody>
39 <tr><td></td></tr>
40 <tr><td></td></tr>
41 <tr><td></td></tr>
42 <tr><td></td></tr>
43 <tr><td></td></tr>
44 <tr><td></td></tr>
45 <tr><td></td></tr>
46 <tr><td></td></tr>
47 <tr><td></td></tr>
48 </tbody>
49 </table>
50 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698