blob: 8f10b70e0aa17240cf8272aad6e7362befda0959 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html class="reftest-wait">
<!-- Invalid fieldset -->
<style>
fieldset:invalid { display: none; }
</style>
<body onload="document.getElementById('input').setCustomValidity('foo'); document.documentElement.className='';">
<fieldset>
<input id="input">
</fieldset>
</body>
</html>
|