28 lines
632 B
HTML
28 lines
632 B
HTML
<!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>
|