Contrast-Finder
Contrast-Finder copied to clipboard
Support input type=color
As Firefox 29 now supports input type="color", replace the
input type="text"`
http://caniuse.com/#feat=input-color
Verify:
- it's OK on windows 7 / Chrome
- it doesn't break the firefox extension
After doing some research and testing, its pretty clear that this this feature can be implemented into the form.jsp
and the site works fine. I did some testing on specifically chrome on a machine running windows 7, and the webapp worked perfectly. I am a little bit wary though because input-color
is not supported at all on IE 11. But IE 11 probably has easily less than 1% of the browser market share anyways, so I doubt it's a problem at all.
IE11 would fallback to a <input type=text>
, which is the same experience than today.