merging changes
This commit is contained in:
parent
e2f6492638
commit
9842418f0d
111 changed files with 5275 additions and 930 deletions
22
demos/form2/test.html
Normal file
22
demos/form2/test.html
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<div><label for="foo">Foo</label><input id="foo" type="text" onChange="alert('change')"/><label>Just a label</label></div>
|
||||
<div><label for="foobar">FooBar</label><input id="foobar" type="checkbox"/><label for="foobar">FooBar</label></div>
|
||||
<div><label for="bar">Bar</label><input id="bar" type="text"/></div>
|
||||
<fieldset>
|
||||
<legend>Legend</legend>
|
||||
<div><input id="one" name="name" type="radio" value="one"/><label for="one">one</label></div>
|
||||
<div><label for="foo">Foo</label><input id="foo" type="text"/><label>Just a label</label></div>
|
||||
<div><input id="two" name="name" type="radio" value="two"/><label for="two">two</label></div>
|
||||
</fieldset>
|
||||
<div><input type="range" max="10" min="0" step="1" value="5" tabindex="1"/></div>
|
||||
<div><input type="password" placeholder="password"/></div>
|
||||
<select>
|
||||
<option>one</option>
|
||||
<option>two</option>
|
||||
</select>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue