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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-table-col-crash.html

Issue 1870663002: Reland main thread position sticky implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Only descend into children which have an ancestor overflow layer. Created 4 years, 8 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 <script>
3 if (window.internals) {
4 internals.settings.setCSSStickyPositionEnabled(true);
5 }
6 </script>
7
8 <html>
9 <head>
10 <script>
11 function doTest()
12 {
13 crashBox.scrollIntoView(true);
14 }
15 window.addEventListener('load', doTest, false);
16 </script>
17 </head>
18 <body>
19 <p>Test position: sticky for table column groups.</p>
20 <p>This test should not crash.</p>
21 <div id=crashBox style="display: table-column-group; position: sticky;"></di v>
22 </body>
23 </html>
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698