Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-scroll-snap/crashtests/fractional-covering-area-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<html>
<style>
#container {
scroll-snap-type: both mandatory;
overflow: overlay;
position: absolute;
height: 33554400px;
width: 33554400px;
}
#area {
scroll-snap-align: end;
position: absolute;
left: 33554400px;
top: -57971.9px;
width: 0px;
height: 33554400px;
}
</style>
<div id="container">
<div id="area"></div>
</div>
</html>