mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
22 lines
501 B
HTML
22 lines
501 B
HTML
<!DOCTYPE html>
|
|
<!--form with no valid element and another valid one is added dynamically -->
|
|
<html class='reftest-wait'>
|
|
<head>
|
|
<style>
|
|
form:invalid { display: none; }
|
|
</style>
|
|
</head>
|
|
<script>
|
|
function onloadHandler()
|
|
{
|
|
document.forms[0].appendChild(document.getElementById('i'));
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
<body onload='onloadHandler();'>
|
|
<input id='i' type='text' value='foo'>
|
|
<form>
|
|
</form>
|
|
</body>
|
|
</html>
|