search-cancel-button.html 760 B

1234567891011
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <p>https://bugs.webkit.org/show_bug.cgi?id=69886 - Clicking on the cancel button on readonly and disabled search fields darkens as if the search field was editable</p>
  5. <p>Clicking on the disabled/readonly search inputs should not render the cancel button dark when you click on them.</p>
  6. <p>Normal search:<br/><input type=search value="This is a string of long text." /></p>
  7. <p>Disabled search:<br/><input type=search value="This is a string of long text." disabled /></p>
  8. <p>Readonly search:<br/><input type=search value="This is a string of long text." readonly /></p>
  9. <p>Disabled and readonly search:<br/><input type=search value="This is a string of long text." disabled readonly /></p>
  10. </body>
  11. </html>