1
0
Fork 0
firefox/testing/web-platform/tests/css/css-ui/subpixel-outline-width.tentative.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

48 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>
CSS Outline: width computed value
</title>
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-ui-4/#outline-width">
<link rel="match" href="reference/subpixel-outline-width-ref.tentative.html">
<meta name="assert" content="outline-width computed value after rounding.">
<style>
.square {
height: 20px;
width: 20px;
outline: solid gray;
}
</style>
</head>
<body>
<h1>
Test passes if outline widths are rounded up
when they are greater than 0 and less than 1,
and rounded down when they are greater than 1.
</h1>
<div class="square" style="outline-width: 0.3px;"></div>
<br>
<div class="square" style="outline-width: 0.5px;"></div>
<br>
<div class="square" style="outline-width: 0.9px;"></div>
<br>
<div class="square" style="outline-width: 1.3px;"></div>
<br>
<div class="square" style="outline-width: 1.5px;"></div>
<br>
<div class="square" style="outline-width: 1.9px;"></div>
<br>
<div class="square" style="outline-width: 3.3px;"></div>
<br>
<div class="square" style="outline-width: 3.5px;"></div>
<br>
<div class="square" style="outline-width: 3.9px;"></div>
</body>
</html>