mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 04:08:08 +00:00
This save() call did not have matching restore(). For mask application it's display list builder responsibility to emit save() and restore() so mask is applied only to relevant portion. Progress on https://www.jetbrains.com/
12 lines
333 B
HTML
12 lines
333 B
HTML
<!doctype html>
|
|
<link rel="match" href="reference/background-clip-text-ref.html" />
|
|
<style>
|
|
* { outline: 1px solid black; font-size: 100px; }
|
|
.overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
.background-clip-text {
|
|
background-clip: text;
|
|
}
|
|
</style><body><div>hello</div><div class="overflow-hidden"><div class="background-clip-text">x
|