LibWeb: Apply presentational hints for the HTMLHRElement color attribute

This commit is contained in:
Tim Ledbetter
2025-02-18 07:25:09 +00:00
committed by Andreas Kling
parent 83c4e22247
commit c217057cfd
Notes: github-actions[bot] 2025-02-18 11:07:44 +00:00
3 changed files with 49 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
<!doctype html>
<meta charset=utf-8>
<style>
.hr {
color: gray;
border-style: inset;
border-width: 1px;
margin: 0.5em auto;
}
.green {
color: green;
}
.no-inset {
border-style: solid;
}
</style>
<div class='hr'></div>
<div class='hr no-inset'></div>
<div class='hr no-inset'></div>
<div class='hr green no-inset'></div>