mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
Bug 644641 - Fix perma-oranges browser-chrome tests on desktop - followup [r=mfinkle]
This commit is contained in:
parent
dd873e3112
commit
cfa0c40f2d
@ -1006,7 +1006,14 @@
|
||||
<!-- mobileRoot is a property otherwise if it is accessed before Places
|
||||
is ready the value will be bitrotted
|
||||
-->
|
||||
<property name="mobileRoot" onget="return PlacesUtils.annotations.getItemsWithAnnotation('mobile/bookmarksRoot', {})[0];"/>
|
||||
<field name="_mobileRoot">null</field>
|
||||
<property name="mobileRoot">
|
||||
<getter><![CDATA[
|
||||
if (!this._mobileRoot)
|
||||
this._mobileRoot = PlacesUtils.annotations.getItemsWithAnnotation('mobile/bookmarksRoot', {})[0];
|
||||
return this._mobileRoot;
|
||||
]]></getter>
|
||||
</property>
|
||||
|
||||
<property name="isRootFolder" readonly="true">
|
||||
<getter>
|
||||
|
Loading…
Reference in New Issue
Block a user