1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-07-20 22:18:32 +00:00
Files
UXP/dom/html/crashtests/862084.html
T

10 lines
168 B
HTML

<!doctype html>
<select></select>
<script>
var select = document.getElementsByTagName("select");
select.item(0);
select[0];
select.namedItem("x")
select["x"]
</script>