Merge m-c to inbound.

This commit is contained in:
Ryan VanderMeulen 2012-09-29 23:45:54 -04:00
commit 8159a68cdb
5 changed files with 14 additions and 2 deletions

View File

@ -1087,7 +1087,7 @@ Function OnClick_ButtonBrowse
StrCpy $0 "$INSTDIR"
${EndIf}
nsDialogs::SelectFolderDialog /NOUNLOAD "$(SELECT_FOLDER)" $0
nsDialogs::SelectFolderDialog /NOUNLOAD "$(SELECT_FOLDER_TEXT)" $0
Pop $0
${If} $0 == "error" ; returns 'error' if 'cancel' was pressed?
Return

View File

@ -57,7 +57,7 @@ DOWNLOADING_DONE=Downloaded
INSTALLING_TO_BE_DONE=Installing
INSTALLING_IN_PROGRESS=Installing…
SELECT_FOLDER=Select the folder to install Firefox in.
SELECT_FOLDER_TEXT=Select the folder to install $BrandShortName in.
BYTE=B
KILO=K

View File

@ -260,3 +260,10 @@
fun:_ZL29nsGSettingsServiceConstructorP11nsISupportsRK4nsIDPPv
...
}
{
Bug 795631
Memcheck:Cond
fun:_ZN7mozilla17FrameLayerBuilder18ClippedDisplayItemD1Ev
fun:_ZN12nsTHashtableIN7mozilla17FrameLayerBuilder21ThebesLayerItemsEntryEE12s_ClearEntryEP12PLDHashTableP15PLDHashEntryHdr
...
}

View File

@ -2469,6 +2469,7 @@ FrameLayerBuilder::AddLayerDisplayItem(Layer* aLayer,
data->AddFrame(aItem->GetUnderlyingFrame());
}
#if 0
nsAutoTArray<nsIFrame*,4> mergedFrames;
aItem->GetMergedFrames(&mergedFrames);
for (uint32_t i = 0; i < mergedFrames.Length(); ++i) {
@ -2479,6 +2480,7 @@ FrameLayerBuilder::AddLayerDisplayItem(Layer* aLayer,
data->AddFrame(mergedFrames[i]);
}
}
#endif
DisplayItemData* oldData = GetDisplayItemDataForManager(aItem, mRetainingManager);
if (oldData && oldData->FrameListMatches(aItem)) {

View File

@ -115,6 +115,9 @@
<property name="webBrowserFind"
readonly="true"
onget="return this.docShell.QueryInterface(Components.interfaces.nsIInterfaceRequestor).getInterface(Components.interfaces.nsIWebBrowserFind);"/>
<property name="markupDocumentViewer"
readonly="true"
onget="return this.docShell.contentViewer.QueryInterface(Components.interfaces.nsIMarkupDocumentViewer);"/>
<property name="editingSession"
readonly="true"
onget="return this.webNavigation.QueryInterface(Components.interfaces.nsIInterfaceRequestor).getInterface(Components.interfaces.nsIEditingSession);"/>