summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html b/testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html
new file mode 100644
index 0000000000..fbc0b5fc6d
--- /dev/null
+++ b/testing/web-platform/tests/css/css-anchor-position/anchor-scroll-position-try-012-ref.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<style>
+#scroller {
+ width: 400px;
+ height: 400px;
+ overflow-y: scroll;
+}
+
+.box {
+ min-height: 100px;
+ width: 100px;
+}
+
+#anchor {
+ background: orange;
+}
+
+#anchored {
+ width: 100px;
+ height: 100px;
+ background: green;
+}
+</style>
+
+<div id="scroller">
+ <div class="box"></div>
+ <div class="box"></div>
+ <div class="box"></div>
+ <div class="box" id="anchor"></div>
+ <div id="anchored"></div>
+ <div class="box"></div>
+ <div class="box"></div>
+ <div class="box"></div>
+</div>
+
+<script>
+scroller.scrollTop = 150;
+</script>
+