blob: 2a3786afe0ee4d2a59cd4e8457cb36a79ac37981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<head>
</head>
<body onload='var yar=document.getElementById("yar"); yar.parentNode.removeChild(yar); document.getElementById("foo").removeAttribute("multiple");'>
<div id="yar">Clicking the button below should not trigger an assertion</div>
<select id="foo" multiple><option>A</option></select>
</body>
</html>
|