mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|