Bug 825605 Avoid explicitly setting null as that actually sets the string 'null' r=Mnyromyr

This commit is contained in:
Neil Rashbrook 2013-01-11 00:24:43 +00:00
Родитель d5ec1cab0e
Коммит 8b612ba4b9
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -837,7 +837,7 @@
<setter>
<![CDATA[
if (this.internalValue == val)
return;
return val;
this.internalValue = val;
var menulist = document.getAnonymousNodes(this)[0];
menulist.selectedItem = this.validMenuitem;
@ -879,7 +879,7 @@
// custom attribute to style the unavailable menulist item
menulist.setAttribute("unavailable",
(this.valueIds.indexOf(typedValue) < 0) ? "true" : null);
this.valueIds.indexOf(typedValue) < 0);
// add a hidden menulist item if value is missing
let menuitem = menulist.getElementsByAttribute("value", this.value).item(0);