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

Unified Diff: third_party/WebKit/LayoutTests/fast/layout/scroll-anchoring/fragment-scrolling-anchors.html

Issue 1895293002: Test fragment scrolling and history restoration interaction w/ scroll anchoring. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove .cpp.tmpl and other review comments Created 4 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/layout/scroll-anchoring/history-restore-anchors.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/layout/scroll-anchoring/fragment-scrolling-anchors.html
diff --git a/third_party/WebKit/LayoutTests/fast/layout/scroll-anchoring/fragment-scrolling-anchors.html b/third_party/WebKit/LayoutTests/fast/layout/scroll-anchoring/fragment-scrolling-anchors.html
new file mode 100644
index 0000000000000000000000000000000000000000..ef3a75f87709a6b2f09105550671f60782d8177d
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/layout/scroll-anchoring/fragment-scrolling-anchors.html
@@ -0,0 +1,52 @@
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<style>
+ body {
+ margin: 0px;
+ height: 2000px;
+ width: 2000px;
+ }
+
+ #first {
+ height: 1000px;
+ background-color: #FFA5D2;
+ }
+
+ #anchor {
+ position: absolute;
+ background-color: #84BE6A;
+ height: 600px;
+ width: 100%;
+ }
+
+ #fragment {
+ position: relative;
+ background-color: orange;
+ height: 200px;
+ width: 200px;
+ margin: 10px;
+ }
+</style>
+
+<div id="first"></div>
+<div id="changer"></div>
+<div id="anchor">
+ <div id="fragment" name="fragment"></div>
+</div>
+
+<script>
+ test(function(t) {
+ // Note that this test passes even without scroll anchoring because of
+ // fragment anchoring.
+ window.location.hash = 'fragment';
+ // Height of first + fragment margin-top.
+ assert_equals(window.scrollY, 1010);
+
+ // Change height of content above fragment.
+ var ch = document.getElementById('changer');
+ ch.style.height = 100;
+
+ // Height of first + height changer + fragment margin-top.
+ assert_equals(window.scrollY, 1110);
+ }, 'Verify scroll anchoring interaction with fragment scrolls');
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/layout/scroll-anchoring/history-restore-anchors.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698