blob: 746997d6057ba1d2c109dafdfe7730ef149cd21e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#background-attachment">
<link rel="match" href="background-attachment-fixed-inline-scrolled-ref.html">
<meta name="assert" content="Background with background-attachment-fixed on an inline element should be fixed to the viewport">
<style>
body {
/* suppress scrollbars */
overflow: hidden;
}
#target {
background-attachment: fixed;
background-image: linear-gradient(green 50%, yellow 50%);
font-size: 130px;
line-height: 100px;
}
</style>
<span id="target">
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</span>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
scrollTo(0, 300);
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
|