haikuwebkit/LayoutTests/fast/forms/checkbox-painting-with-hr.html

17 lines
307 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>This tests that checkboxes are painted properly when dashed/dotted horizontal rule is present.</title>
<style>
hr {
margin-top: -10px;
border: 1px dashed white;
}
</style>
</head>
<body>
<hr>
<input type="checkbox" checked="checked">
</body>
</html>