﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2865	Autoit crash with NodeList on For In loop	anonymous		"{{{
$document = ObjCreate(""HTMLFILE"")
$document.write('<input type=""hidden"" name=""test""/>')
$inputs = $document.querySelectorAll(""input"")
For $item = 0 To $inputs.length -1
	ConsoleWrite($inputs.item($item).name & @CRLF)
Next
}}}
For To loop work fine, but For In leads to hard crash:
{{{
For $input In $inputs
	ConsoleWrite($input.name & @CRLF)
Next
}}}
And it looks like a fall occurs when the script exits"	Bug	closed		AutoIt	3.3.12.0	None	No Bug		
