~ubuntu-branches/ubuntu/gutsy/firefox/gutsy

« back to all changes in this revision

Viewing changes to toolkit/content/widgets/popup.xml

  • Committer: Bazaar Package Importer
  • Author(s): Ian Jackson
  • Date: 2006-10-10 18:49:32 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20061010184932-da75izt7y0e59afq
Tags: 1.99+2.0rc2+dfsg-0ubuntu1
* New upstream version 2.0rc2.
* Fix/workaround for epiphany GtkSocket lifetype crash:
  apply patch id=241087 from Mozilla Bugzilla #241535 to fix LP #63814.
* Change application name to `Firefox', as requested by mdz.
  Files changed:
    - browser/locales/en-US/chrome/branding/brand.dtd
    - browser/locales/en-US/chrome/branding/brand.properties;
  New values:
    - brandShortName and brandFullName: `Bon Echo' => `Firefox'
    - vendorShortName: `Mozilla' => `Ubuntu'
* Make preferences dialogue fit again (bah!).

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
      <property name="accessible">
23
23
        <getter>
24
24
          <![CDATA[
25
 
            var accService = Components.classes["@mozilla.org/accessibilityService;1"].getService(Components.interfaces.nsIAccessibilityService);
26
 
            if (this.localName == "popup" || this.localName == "menupopup")
27
 
              return accService.createXULMenupopupAccessible(this);
28
 
            else if (this.localName == "tooltip")
29
 
              return accService.createXULTooltipAccessible(this);
 
25
            try {
 
26
              var accService = Components.classes["@mozilla.org/accessibilityService;1"].getService(Components.interfaces.nsIAccessibilityService);
 
27
              if (this.localName == "popup" || this.localName == "menupopup")
 
28
                return accService.createXULMenupopupAccessible(this);
 
29
              else if (this.localName == "tooltip")
 
30
                return accService.createXULTooltipAccessible(this);
 
31
            }
 
32
            catch(ex) { /* no chrome privileges */ }
 
33
 
30
34
            return null;
31
35
          ]]>
32
36
        </getter>
667
671
  </binding>
668
672
 
669
673
</bindings>
670