mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 09:15:07 +00:00

Refactor to resolve paint-only properties before painting, aiming to stop using layout nodes during recording of painting commands. Also adds a test, as we have not had any for outlines yet.
11 lines
305 B
HTML
11 lines
305 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="reference/outlines-ref.html" />
|
|
<style>
|
|
.outline {
|
|
width: 100px;
|
|
height: 100px;
|
|
outline: 5px solid black;
|
|
}
|
|
</style>
|
|
<div class="outline">hello from paintable box</div>
|
|
<p><span class="outline">hello from inline paintable</span></p>
|