Skip to content

Commit

Permalink
Bail if clamp limits are invalid
Browse files Browse the repository at this point in the history
Bug: 1483569
Change-Id: I78ca225e3816ccc43727699e44270a9528dac510
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4878961
Reviewed-by: Steve Kobes <skobes@chromium.org>
Commit-Queue: David Awogbemila <awogbemila@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1199193}
  • Loading branch information
David Awogbemila authored and chromium-wpt-export-bot committed Sep 20, 2023
1 parent 1f77d66 commit be778b5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions css/css-scroll-snap/crashtests/fractional-covering-area-crash.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!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>

0 comments on commit be778b5

Please sign in to comment.