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

Unified Diff: third_party/WebKit/LayoutTests/fast/scrolling/fractional-scroll-offset-fixed-position.html

Issue 1385123003: Delete scrollCompensationAdjustment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again 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/scrolling/fractional-scroll-offset-fixed-position.html
diff --git a/third_party/WebKit/LayoutTests/fast/scrolling/fractional-scroll-offset-fixed-position.html b/third_party/WebKit/LayoutTests/fast/scrolling/fractional-scroll-offset-fixed-position.html
deleted file mode 100644
index 3abe7366b2df630a6b44cac60adf7d0de2e1d609..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/scrolling/fractional-scroll-offset-fixed-position.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-#settings {
- width: 100px;
- height: 100px;
- position: fixed;
- top: 10px;
- z-index:2;
- background-color:red;
-}
-
-#header {
- width:200px;
- height:20px;
- position:fixed;
- right:100px;
- top:100px;
- z-index:3;
- background-color:green;
-}
-</style>
-</head>
-
-<script>
-function runTest()
-{
- window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
- window.scrollTo(0, 0.5);
- document.getElementById('header').innerHTML = "scroll offset is " + window.scrollY;
-}
-</script>
-
-<body style="width:1000px;height:2000px;" onload="runTest()">
-<div id="settings" >
- <div id="header">
- </div>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698