Bugzilla Bug 103343 Check for IsEmpty before more expensive value check

patch by me and bz, r=morse, sr=alecf
This commit is contained in:
timeless%mac.com 2001-10-08 19:48:29 +00:00
Родитель 4d363f3ca0
Коммит c47a1caadc
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -1918,8 +1918,9 @@ wallet_StepForwardOrBack
result = inputElement->GetType(type);
if (goForward) {
if (NS_SUCCEEDED(result) &&
((type.CompareWithConversion("text", PR_TRUE) == 0) ||
type.IsEmpty())) {
(type.IsEmpty() ||
(Compare(type, NS_LITERAL_STRING("text"),
nsCaseInsensitiveStringComparator()) == 0))) {
/* at <input> element and it's type is either "text" or is missing ("text" by default) */
atInputOrSelect = PR_TRUE;
return;