mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
14 lines
553 B
HTML
14 lines
553 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<!-- Test: if input isn't valid nor barred from constraint validation,
|
|
and its value has changed,
|
|
it should be affected by :-moz-ui-invalid pseudo-class. -->
|
|
<!-- TODO: this is valid until bug bug 613016 and bug 613019 are fixed. -->
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<body onload="document.getElementById('i').value='foo';
|
|
document.documentElement.className='';">
|
|
<input class='notinvalid' maxlength="2" id='i'>
|
|
</body>
|
|
</html>
|
|
|