readOnlyPage.html 799 B

123456789101112131415161718192021222324
  1. <html>
  2. <body>
  3. <input id="writableTextInput" type="text" value="Test"/>
  4. <input id="readOnlyTextInput" type="text" readonly value="Test"/>
  5. <input id="textInputnotenabled" type="text" disabled="true" value="Test"/>
  6. <textarea id="writableTextArea" rows="2" cols="20">
  7. This is a sample text area which is supposed to be cleared
  8. </textarea>
  9. <textarea id="textAreaReadOnly" readonly rows="5" cols="20">
  10. text area which is not supposed to be cleared</textarea>
  11. <textarea rows="5" id="textAreaNotenabled" disabled="true" cols="20">
  12. text area which is not supposed to be cleared</textarea>
  13. <div id="content-editable" contentEditable="true"><h1>This</h1><h2>is a</h2><p>contentEditable area</p></div>
  14. <div id="content-editable-blank" contentEditable="true" style="height:50px;"></div>
  15. </body>
  16. </html>