blob: 41e76115b0707d04ae473d48144932f5e3df3237 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: if button is of the button type, it is barred from constraint
validation and should not be affected by :invalid pseudo-class. -->
<link rel='stylesheet' type='text/css' href='style.css'>
<body onload="document.getElementById('b').setCustomValidity('foo'); document.documentElement.className='';">
<button class='notinvalid' id='b' type='button'></button>
</body>
</html>
|