forked from pool/MozillaFirefox
9b8c7a10ed
* MFSA 2012-13/CVE-2012-0455 (bmo#704354) XSS with Drag and Drop and Javascript: URL * MFSA 2012-14/CVE-2012-0456/CVE-2012-0457 (bmo#711653, #720103) SVG issues found with Address Sanitizer * MFSA 2012-15/CVE-2012-0451 (bmo#717511) XSS with multiple Content Security Policy headers * MFSA 2012-16/CVE-2012-0458 Escalation of privilege with Javascript: URL as home page * MFSA 2012-17/CVE-2012-0459 (bmo#723446) Crash when accessing keyframe cssText after dynamic modification * MFSA 2012-18/CVE-2012-0460 (bmo#727303) window.fullScreen writeable by untrusted content * MFSA 2012-19/CVE-2012-0461/CVE-2012-0462/CVE-2012-0464/ CVE-2012-0463 Miscellaneous memory safety hazards - add Provides: browser(npapi) FATE#313084 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=268
25 lines
1013 B
Diff
25 lines
1013 B
Diff
# HG changeset patch
|
|
# Parent 39e596b823926b5add22bb263734c6c872ee2aad
|
|
diff --git a/layout/xul/base/src/nsXULTooltipListener.h b/layout/xul/base/src/nsXULTooltipListener.h
|
|
--- a/layout/xul/base/src/nsXULTooltipListener.h
|
|
+++ b/layout/xul/base/src/nsXULTooltipListener.h
|
|
@@ -107,17 +107,17 @@ protected:
|
|
static void sTooltipCallback (nsITimer* aTimer, void* aListener);
|
|
|
|
// screen coordinates of the last mousemove event, stored so that the
|
|
// tooltip can be opened at this location.
|
|
PRInt32 mMouseScreenX, mMouseScreenY;
|
|
|
|
// various constants for tooltips
|
|
enum {
|
|
- kTooltipMouseMoveTolerance = 7, // 7 pixel tolerance for mousemove event
|
|
+ kTooltipMouseMoveTolerance = 7 // 7 pixel tolerance for mousemove event
|
|
};
|
|
|
|
// flag specifying if the tooltip has already been displayed by a MouseMove
|
|
// event. The flag is reset on MouseOut so that the tooltip will display
|
|
// the next time the mouse enters the node (bug #395668).
|
|
bool mTooltipShownOnce;
|
|
|
|
#ifdef MOZ_XUL
|