You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="Check if the 'background-attachment' value is 'fixed' that expecting 'background-origin' has no effect and the background positioning area is the initial containing block.">
<style>
html {
padding-left: 170px;
}
div {
left: 0px;
position: absolute;
top: 0px;
}
#ref-overlapped-red {
background-color: red;
height: 60px;
width: 60px;
}
#test-overlapping-green {
background-attachment: fixed;
background-image: url(support/60x60-green.png);
background-origin: content-box;
background-repeat: no-repeat;
border: transparent dotted 5px;
height: 100px;
padding: 25px;
width: 100px;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square at the left of the page and <strong>no red</strong>.</p>