OLD | NEW |
| (Empty) |
1 <html> | |
2 <body> | |
3 <input id="writableTextInput" type="text" value="Test"/> | |
4 | |
5 <input id="readOnlyTextInput" type="text" readonly value="Test"/> | |
6 | |
7 <input id="textInputnotenabled" type="text" disabled="true" value="Test"/> | |
8 | |
9 <textarea id="writableTextArea" rows="2" cols="20"> | |
10 This is a sample text area which is supposed to be cleared | |
11 </textarea> | |
12 | |
13 <textarea id="textAreaReadOnly" readonly rows="5" cols="20"> | |
14 text area which is not supposed to be cleared</textarea> | |
15 | |
16 <textarea rows="5" id="textAreaNotenabled" disabled="true" cols="20"> | |
17 text area which is not supposed to be cleared</textarea> | |
18 | |
19 <div id="content-editable" contentEditable="true">This is a contentEditable area
</div> | |
20 </body> | |
21 </html> | |
22 | |
OLD | NEW |