Bug 310393: Hitting Enter in an empty searchbar shouldn't add an empty entry to its form history, r=mano

This commit is contained in:
gavin%gavinsharp.com 2005-09-29 03:14:59 +00:00
Родитель da25f80049
Коммит 883da3ff3e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -301,7 +301,7 @@
<parameter name="aEvent"/>
<body><![CDATA[
// Save the current value in the form history
if (!this.hasAttribute("disableautocomplete"))
if (this.value && !this.hasAttribute("disableautocomplete"))
this.formHistSvc.addEntry(this.getAttribute(
"autocompletesearchparam"), this.value);