mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb: Apply presentational hints for the HTMLHRElement color attribute
This commit is contained in:
committed by
Andreas Kling
parent
83c4e22247
commit
c217057cfd
Notes:
github-actions[bot]
2025-02-18 11:07:44 +00:00
Author: https://github.com/tcl3 Commit: https://github.com/LadybirdBrowser/ladybird/commit/c217057cfd3 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3610
@@ -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>
|
||||
Reference in New Issue
Block a user