mirror of
https://github.com/servo/servo.git
synced 2025-08-02 04:00:32 +01:00
<hr> elements are expected to have a default overflow:hidden (#31297)
* <hr> elements are expected to have a default overflow:hidden See https://github.com/whatwg/html/pull/2724 Signed-off-by: Sebastian C <sebsebmc@gmail.com> * Use full defined hr style Signed-off-by: Sebastian C <sebsebmc@gmail.com> * update legacy test expectation Signed-off-by: Sebastian C <sebsebmc@gmail.com> --------- Signed-off-by: Sebastian C <sebsebmc@gmail.com>
This commit is contained in:
parent
35fb95ca85
commit
0342d6beb0
3 changed files with 10 additions and 7 deletions
|
@ -266,7 +266,16 @@ input[type="submit"], select, button {
|
||||||
|
|
||||||
input, textarea, select, button { display: inline-block; }
|
input, textarea, select, button { display: inline-block; }
|
||||||
|
|
||||||
hr { color: gray; border-style: inset; border-width: 1px; margin: 0.5em auto; }
|
hr {
|
||||||
|
color: gray;
|
||||||
|
border-style: inset;
|
||||||
|
border-width: 1px;
|
||||||
|
margin-block-start: 0.5em;
|
||||||
|
margin-inline-end: auto;
|
||||||
|
margin-block-end: 0.5em;
|
||||||
|
margin-inline-start: auto;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
[setting-overflow-visible.html]
|
[setting-overflow-visible.html]
|
||||||
type: testharness
|
type: testharness
|
||||||
[control]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[overflow: visible]
|
[overflow: visible]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
[setting-overflow-visible.html]
|
|
||||||
[control]
|
|
||||||
expected: FAIL
|
|
Loading…
Add table
Add a link
Reference in a new issue