mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
36553d4566
Painting command executor already accounts for CSS transforms so clip rect only needs to be adjusted by scroll offset.
13 lines
315 B
HTML
13 lines
315 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="reference/overflow-hidden-text-inside-translated-container-ref.html" />
|
|
<style>
|
|
.text {
|
|
overflow: hidden;
|
|
font-size: 50px;
|
|
}
|
|
|
|
.container {
|
|
transform: translate(0px, -50%);
|
|
}
|
|
</style>
|
|
<div class="container"><div class="text">Verify with something else</div></div>
|