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

Unified Diff: LayoutTests/fast/css/sticky/sticky-both-sides-expected.html

Issue 346603007: Remove position: sticky (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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: LayoutTests/fast/css/sticky/sticky-both-sides-expected.html
diff --git a/LayoutTests/fast/css/sticky/sticky-both-sides-expected.html b/LayoutTests/fast/css/sticky/sticky-both-sides-expected.html
deleted file mode 100644
index 94b0971a4605f14583577dd78198d1ce6ed15991..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/css/sticky/sticky-both-sides-expected.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
-<style>
- body {
- margin: 0;
- overflow: hidden; /* hide scrollbars */
- }
-
- .container {
- position: absolute;
- width: 2000px;
- height: 180px;
- top: 50px;
- outline: 2px solid black;
- }
-
- .vertical.container {
- top: 0px;
- left: 50px;
- width: 180px;
- height: 2000px;
- }
-
- .box {
- width: 800px;
- height: 180px;
- }
-
- .vertical .box {
- width: 180px;
- height: 500px;
- }
-
- .sticky {
- position: relative;
- left: 50px;
- right: 50px;
- background-color: green;
- }
-
- .vertical .sticky {
- left: 0;
- top: 50px;
- bottom: 50px;
- background-color: blue;
- opacity: 0.75;
- }
-</style>
-</head>
-<body>
- <div class="container">
- <div class="sticky box"></div>
- </div>
- <div class="vertical container">
- <div class="sticky box"></div>
- </div>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/fast/css/sticky/sticky-both-sides.html ('k') | LayoutTests/fast/css/sticky/sticky-bottom-overflow-padding.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698