Tests/LibWeb: Add a test for clipping text with CSS clip

This commit is contained in:
Zaggy1024 2023-08-31 19:22:17 -05:00 committed by Alexander Kalenik
parent 709767cc4b
commit 50bb785306
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<!DOCTYPE html><style type="text/css">
* {
background-color: white;
}
.clip {
width: 100px;
height: 50px;
overflow: hidden;
}
</style><div class="clip">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

View file

@ -0,0 +1,11 @@
<!DOCTYPE html><style type="text/css">
* {
background-color: white;
}
.clip {
position: absolute;
width: 100px;
height: 100px;
clip: rect(auto, auto, 50px, auto);
}
</style><div class="clip">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

View file

@ -1,4 +1,5 @@
{
"clip.html": "clip-ref.html",
"clip-abspos-children.html": "clip-abspos-children-ref.html",
"css-any-link-selector.html": "css-any-link-selector-ref.html",
"css-gradient-currentcolor.html": "css-gradient-currentcolor-ref.html",