Bug 593447 followup, set 'crop' property instead of attribute. r=gavin

This commit is contained in:
Dão Gottwald 2010-09-04 20:33:34 +02:00
parent f390399c09
commit f9f7bf2896

View File

@ -886,7 +886,7 @@
<body>
<![CDATA[
aTab.label = this.mStringBundle.getString("tabs.loading");
aTab.setAttribute("crop", "end");
aTab.crop = "end";
this._tabAttrModified(aTab);
]]>
</body>
@ -931,7 +931,7 @@
return false;
aTab.label = title;
aTab.setAttribute("crop", crop);
aTab.crop = crop;
this._tabAttrModified(aTab);
return true;
]]>