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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflowing-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-overflowing-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflowing-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflowing-expected.html
deleted file mode 100644
index 0b4c814ef6f9cfef8e40963af1e8374cb02566ec..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflowing-expected.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
-<style>
- body {
- margin: 0;
- overflow: hidden; /* hide scrollbars */
- }
-
- .container {
- position: absolute;
- width: 200px;
- height: 400px;
- margin: 10px;
- left: 200px;
- top: -300px;
- outline: 2px solid black;
- }
-
- .spacer {
- height: 350px;
- width: 20px;
- background-color: black;
- }
-
- .vertical .spacer {
- height: 20px;
- width: 350px;
- }
-
- .vertical.container {
- -webkit-writing-mode: vertical-rl;
- top: 200px;
- left: 700px;
- width: 400px;
- height: 200px;
- }
-
-
- .box {
- width: 150px;
- height: 150px;
- }
-
- .sticky {
- position: relative;
- background-color: green;
- opacity: 0.75;
- }
-</style>
-</head>
-<body>
- <div class="container">
- <div class="spacer"></div>
- <div class="sticky box"></div>
- </div>
-
- <div class="vertical container">
- <div class="spacer"></div>
- <div class="sticky box"></div>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698