Files
servo/tests/wpt/web-platform-tests/css/css-transforms/transform-input-013-ref.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>