datepicker: add test HTML file - jscancer - Javascript crap (relatively small) | |
git clone git://git.codemadness.org/jscancer | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 39836e1d998366312bca5fe1f77400923fffd868 | |
parent 308ace453533d328570dcc4d18826641d0b2e891 | |
Author: Hiltjo Posthuma <[email protected]> | |
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(-) | |
--- | |
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… | |
+<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="posit… | |
+ | |
+<input type="date" class="date" min="2016-01-01" max="2016-12-31" style="posit… | |
+ | |
+<div style="position: absolute;top: 300px; right: 20px"> | |
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><b… | |
+</div> | |
+ | |
+<div style="position: fixed;top: 400px; right: 20px"> | |
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><b… | |
+</div> | |
+ | |
+<div style="position: absolute;top: 1000px; left: 400px"> | |
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><b… | |
+</div> | |
+ | |
+ | |
+<div style="position: absolute;top: 1300px; right: 20px"> | |
+ <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><b… | |
+</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> |