mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
18 lines
356 B
HTML
18 lines
356 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<body onload="
|
||
|
document.body.removeChild(document.getElementById('x'));
|
||
|
document.documentElement.removeAttribute('class');">
|
||
|
|
||
|
<div id="x">
|
||
|
<div id="a">
|
||
|
<form id="a">
|
||
|
<select></select>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<select form="a"></select>
|
||
|
</body>
|
||
|
</html>
|