mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:27:43 +00:00
LibWeb: Do not shrink the CPU painter's corner clipping vector
If the provided ID is smaller than the corner clipping vector, we would shrink the vector to match. This causes a crash when we have nested PaintContext instances (as these IDs are allocated by PaintContext), each of which perform radius painting. This is seen on https://www.strava.com/login when it loads a reCAPTCHA. The outer div has a border radius, which contains the reCAPTCHA in an iframe. That iframe contains an SVG which also has a border radius.
This commit is contained in:
parent
3a8c81a460
commit
842caf5e8c
4 changed files with 24 additions and 1 deletions
|
@ -0,0 +1,13 @@
|
|||
<style>
|
||||
div {
|
||||
border-radius: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
<div><iframe src="../data/iframe-with-border-radius-svg.html"></iframe></div>
|
||||
<script src="include.js"></script>
|
||||
<script>
|
||||
test(() => {
|
||||
println("PASS! (didn't crash)");
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue