tenfourfox/dom/html/crashtests/862084.html

10 lines
168 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!doctype html>
<select></select>
<script>
var select = document.getElementsByTagName("select");
select.item(0);
select[0];
select.namedItem("x")
select["x"]
</script>