datepicker: add test HTML file - jscancer - Javascript crap (relatively small)
(HTM) git clone git://git.codemadness.org/jscancer
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 39836e1d998366312bca5fe1f77400923fffd868
(DIR) parent 308ace453533d328570dcc4d18826641d0b2e891
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 30 May 2017 19:38:02 +0200
datepicker: add test HTML file
Diffstat:
A datepicker/test.html | 76 +++++++++++++++++++++++++++++++
1 file changed, 76 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/datepicker/test.html b/datepicker/test.html
@@ -0,0 +1,76 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title>jsdatepicker</title>
+ <link rel="stylesheet" type="text/css" href="datepicker.css" />
+</head>
+<body>
+
+<br/>
+<br/>
+<br/><br/>
+<br/>
+<br/>
+<br/>
+<br/>
+<br/>
+<br/>
+<br/>
+<br/>
+<br/>
+
+<form method="post" action="">
+
+<label for="os">OS: </label>
+<input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+
+
+<input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+
+<input type="date" class="date" min="2016-01-01" max="2016-12-31" style="position: absolute; top: 100px;right: 20px" /><br/>
+
+<input type="date" class="date" min="2016-01-01" max="2016-12-31" style="position: fixed; top: 200px;right: 20px" /><br/>
+
+<div style="position: absolute;top: 300px; right: 20px">
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+</div>
+
+<div style="position: fixed;top: 400px; right: 20px">
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+</div>
+
+<div style="position: absolute;top: 1000px; left: 400px">
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+</div>
+
+
+<div style="position: absolute;top: 1300px; right: 20px">
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+</div>
+
+
+<table>
+<tr><td>
+test
+</td><td></td></tr>
+<tr><td></td><td>
+<input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+</td></tr>
+</table>
+
+<table style="float:right">
+<tr><td>
+test
+</td><td></td></tr>
+<tr><td></td><td>
+<input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
+</td></tr>
+</table>
+
+</form>
+
+<script type="text/javascript" src="datepicker.js"></script>
+
+</body>
+</html>