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

Unified Diff: sky/engine/web/tests/data/fixed-position.html

Issue 1210153009: Remove (almost all of) //sky/engine/web (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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: sky/engine/web/tests/data/fixed-position.html
diff --git a/sky/engine/web/tests/data/fixed-position.html b/sky/engine/web/tests/data/fixed-position.html
deleted file mode 100644
index be998916e5dab8c22f5126779a9c297cc438f77f..0000000000000000000000000000000000000000
--- a/sky/engine/web/tests/data/fixed-position.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <style>
- .fixed {
- position: fixed;
- }
- .top {
- top: 1px;
- }
- .bottom {
- bottom: 1px;
- }
- .left {
- left: 1px;
- }
- .right {
- right: 1px;
- }
- </style>
-</head>
-
-<!-- Fixed position elements may skip compositing without a scrollable
-ancestor. To make sure this test covers the intended scenario, we force the
-body element to be tall, so that the FrameView is scrolling. -->
-<body style="height: 4000px">
- <div id="div-tl" class="fixed top left">X</div>
- <div id="div-tr" class="fixed top right">X</div>
- <div id="div-bl" class="fixed bottom left">X</div>
- <div id="div-br" class="fixed bottom right">X</div>
- <span id="span-tl" class="fixed top left">X</span>
- <span id="span-tr" class="fixed top right">X</span>
- <span id="span-bl" class="fixed bottom left">X</span>
- <span id="span-br" class="fixed bottom right">X</span>
-</body>
-</html>
« no previous file with comments | « sky/engine/web/tests/data/first_party.html ('k') | sky/engine/web/tests/data/fixed-position-in-fixed-viewport.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698