mirror of
https://github.com/servo/servo.git
synced 2025-06-28 02:53:48 +01:00
19 lines
378 B
HTML
19 lines
378 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1441341">
|
|
<link rel="match" href="input-no-centering-ref.html">
|
|
<style>
|
|
input {
|
|
appearance: none;
|
|
margin: 0;
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
input:before {
|
|
content: "";
|
|
display: block;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<input type="checkbox">
|