Turning back on isdatavalidforform test for validation

This commit is contained in:
dhbrett 2016-05-13 16:27:27 -07:00
Родитель e7c8bb725a
Коммит 812394f970
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -1704,6 +1704,11 @@ namespace Microsoft.Edge.A11y
return "\nElement failed to validate improper input";
}
if (elements[newInvalid].CurrentIsDataValidForForm != 0)
{
result += "\nElement did not have IsDataValidForForm set to false";
}
if (elements[newInvalid].CurrentHelpText == null || elements[newInvalid].CurrentHelpText.Length == 0)
{
result += "\nElement did not have HelpText";