mirror of
https://github.com/servo/servo
synced 2026-05-10 09:02:30 +02:00
34 lines
871 B
HTML
34 lines
871 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
|
|
<style>
|
|
input {
|
|
margin: 10px;
|
|
position: relative;
|
|
}
|
|
p + input + input {
|
|
left: -10px;
|
|
}
|
|
p + input + input + input {
|
|
left: 10px;
|
|
}
|
|
p + input + input + input + input {
|
|
top: -10px;
|
|
}
|
|
p + input + input + input + input + input {
|
|
top: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>type=datetime-local</p>
|
|
<input value="2012-02-01 12:28" type="datetime-local">
|
|
<input value="2012-02-01 12:28" type="datetime-local">
|
|
<input value="2012-02-01 12:28" type="datetime-local">
|
|
<input value="2012-02-01 12:28" type="datetime-local">
|
|
<input value="2012-02-01 12:28" type="datetime-local">
|
|
</body>
|
|
</html>
|