Closed
Bug 573698
Opened 15 years ago
Closed 15 years ago
Tooltip trying to look at SVG elements tooltip even if SVG is disabled
Categories
(Firefox :: General, defect)
Firefox
General
Tracking
()
RESOLVED
FIXED
Firefox 4.0b1
People
(Reporter: mounir, Assigned: mounir)
Details
Attachments
(1 file, 1 obsolete file)
938 bytes,
patch
|
Details | Diff | Splinter Review |
This produce an error and an empty tooltip is always shown.
Attachment #453012 -
Flags: review?(gavin.sharp)
Comment 1•15 years ago
|
||
Comment on attachment 453012 [details] [diff] [review]
Patch v1
>diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js
> var lookingForSVGTitle = true;
>+#ifndef MOZ_SVG
>+ lookingForSVGTitle = false;
>+#endif // !MOZ_SVG
I would rather:
#ifdef MOZ_SVG
var lookingForSVGTitle = true;
#else
var lookingForSVGTitle = false;
#endif
Attachment #453012 -
Flags: review?(gavin.sharp) → review+
Comment 4•15 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 3.7a6
You need to log in
before you can comment on or make changes to this bug.
Description
•