1
0
Fork 0
firefox/testing/web-platform/tests/css/css-highlight-api/highlight-priority-painting-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
557 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Highlight priority attribute painting</title>
<style>
#green-highlight {
background-color: green;
}
.yellow-highlight {
background-color: yellow;
}
.blue-highlight {
background-color: blue;
}
</style>
</head>
<body>
<span id="green-highlight">Green</span>
<span class="yellow-highlight">Yellow</span>
<span class="blue-highlight">Blue</span>
<span class="yellow-highlight">Yellow</span><span class="blue-highlight">-Blue</span>
</body>
</html>