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

Unified Diff: Source/WebKit/chromium/tests/data/fixed-position.html

Issue 19906002: Move data/ directory from WebKit/chromium/tests into web/tests/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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: Source/WebKit/chromium/tests/data/fixed-position.html
diff --git a/Source/WebKit/chromium/tests/data/fixed-position.html b/Source/WebKit/chromium/tests/data/fixed-position.html
deleted file mode 100644
index be998916e5dab8c22f5126779a9c297cc438f77f..0000000000000000000000000000000000000000
--- a/Source/WebKit/chromium/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 | « Source/WebKit/chromium/tests/data/first_party.html ('k') | Source/WebKit/chromium/tests/data/fixed_layout.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698