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

Unified Diff: LayoutTests/fast/css/sticky/sticky-as-positioning-container-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-as-positioning-container-expected.html
diff --git a/LayoutTests/fast/css/sticky/sticky-as-positioning-container-expected.html b/LayoutTests/fast/css/sticky/sticky-as-positioning-container-expected.html
deleted file mode 100644
index 823cb4b66206f4406c2ab575f07ed86479a18428..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/css/sticky/sticky-as-positioning-container-expected.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
-<style>
- body {
- margin: 0;
- }
-
- .group {
- display: inline-block;
- position: relative;
- width: 250px;
- height: 500px;
- }
-
- .container {
- width: 200px;
- height: 400px;
- outline: 2px solid black;
- }
-
- .box {
- width: 200px;
- height: 200px;
- }
-
- .sticky {
- position: relative;
- top: 200px;
- background-color: silver;
- }
-
- .child {
- position: absolute;
- background-color: green;
- top: 50px;
- left: 50px;
- }
-
- .indicator {
- position: absolute;
- top: 250px;
- left: 50px;
- background-color: red;
- }
-</style>
-</head>
-<body>
- <div class="group" style="top: -100px;">
- <div class="indicator box"></div>
- <div class="container">
- <div class="sticky box">
- <div class="child box"></div>
- </div>
- </div>
- </div>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/fast/css/sticky/sticky-as-positioning-container.html ('k') | LayoutTests/fast/css/sticky/sticky-both-sides.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698