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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-flexbox-expected.html

Issue 1850703002: Revert "Adapt and reland old position sticky implementation from https://codereview.chromium.org/34… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-flexbox-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-flexbox-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-flexbox-expected.html
deleted file mode 100644
index d3024b089e35d7e0308969a6a074ac9f9391619f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-flexbox-expected.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
-<style>
- body {
- margin: 0;
- width: 2000px;
- overflow: hidden; /* hide scrollbars */
- }
-
- p {
- position: relative;
- left: 100px;
- }
-
- .group {
- position: relative;
- width: 500px;
- height: 200px;
- }
-
- .flex-container {
- position: relative;
- display: flex;
- width: 200px;
- height: 180px;
- flex-flow: row wrap;
- outline: 2px solid black;
- }
-
- .box {
- width: 100px;
- height: 180px;
- }
-
- .flex-item {
- width: 100px;
- height: 180px;
- display: flex;
- }
-
- .sticky {
- position: relative;
- background-color: green;
- }
-
-</style>
-<script>
- function doTest()
- {
- window.scrollTo(100, 0);
- }
- window.addEventListener('load', doTest, false);
-</script>
-</head>
-<body>
- <p>This test checks the behavior of position:sticky with flex box items.
- There should be no red.</p>
-
- <div class="group" style="left: 100px">
- <div class="flex-container" style="left: 0px;">
- <div class="sticky flex-item" style="left:100px"></div>
- <div class="flex-item" style="background-color: green;"></div>
- </div>
- </div>
-
- <div class="group" style="left: 150px">
- <div class="flex-container" style="left: 0px;">
- <div class="sticky flex-item" style="left:50px"></div>
- <div class="flex-item" style="background-color: green;"></div>
- </div>
- </div>
-
- <div class="group" style="left: 200px">
- <div class="flex-container" style="left: 0px;">
- <div class="sticky flex-item"></div>
- <div class="flex-item" style="background-color: green;"></div>
- </div>
- </div>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698