Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<!DOCTYPE html>
<html class='reftest-wait'>
<script>
function runTest() {
var p = document.getElementsByTagName('input')[0];
p.value = '#0000ff'
p.defaultValue = '#00ff00';
p.form.reset();
document.documentElement.className = '';
}
window.addEventListener("MozReftestInvalidate", runTest);
</script>
<body>
<form>
<input type="color" />
</form>
</body>
</html>