Implement <hr> 'color' attribute

This commit is contained in:
Corey Farwell 2015-11-08 11:45:11 -05:00
parent 9bcae9a866
commit ee0800abe9
9 changed files with 97 additions and 138 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>

View file

@ -0,0 +1,7 @@
<!doctype html>
<meta charset=utf-8>
<link rel=match href="color-ref.html">
<hr>
<hr color="">
<hr color=transparent>
<hr color=green>