-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[css-ui] Allow outline-style:auto to be process the same as solid (#4…
…3010) In response to w3c/csswg-drafts#9201 (comment) Co-authored-by: Oriol Brufau <[email protected]>
- Loading branch information
1 parent
920a941
commit 9d3be8a
Showing
4 changed files
with
70 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!doctype html> | ||
<html lang=en> | ||
<meta charset=utf-8> | ||
<title>CSS-UI test reference</title> | ||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> | ||
<style> | ||
div { | ||
outline-style: solid; | ||
outline-width: 1em; | ||
width: 100px; | ||
height: 100px; | ||
margin: 2em; | ||
} | ||
div + div { | ||
outline-style: none; | ||
} | ||
</style> | ||
|
||
<p>Test passes if either: | ||
<ul> | ||
<li>there are three boxes below, two above the horizontal line and one below, and the two boxes above the line are identical | ||
<li>there are two identical boxes below, one above the horizontal line and one below | ||
</ul> | ||
|
||
<div></div> | ||
<div></div> | ||
<hr> | ||
<div></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!doctype html> | ||
<html lang=en> | ||
<meta charset=utf-8> | ||
<title>CSS-UI test reference</title> | ||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> | ||
<style> | ||
div { | ||
outline-style: auto; | ||
width: 100px; | ||
height: 100px; | ||
margin: 2em; | ||
} | ||
hr + div { | ||
outline-style: solid; | ||
outline-width: 1em; | ||
} | ||
</style> | ||
|
||
<p>Test passes if either: | ||
<ul> | ||
<li>there are three boxes below, two above the horizontal line and one below, and the two boxes above the line are identical | ||
<li>there are two identical boxes below, one above the horizontal line and one below | ||
</ul> | ||
|
||
<div></div> | ||
<div></div> | ||
<hr> | ||
<div></div> |
This file was deleted.
Oops, something went wrong.