Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/background-attachment-fixed-inline-scrolled.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<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>