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

« back to all changes in this revision

Viewing changes to browser/base/content/sanitize.js

  • 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:
119
119
      
120
120
      get canClear()
121
121
      {
122
 
        var cookieMgr = Components.classes["@mozilla.org/cookiemanager;1"]
123
 
                                  .getService(Components.interfaces.nsICookieManager);
124
 
        return cookieMgr.enumerator.hasMoreElements();
 
122
        return true;
125
123
      }
126
124
    },
127
125
    
158
156
        while (windows.hasMoreElements()) {
159
157
          var searchBar = windows.getNext().document.getElementById("searchbar");
160
158
          if (searchBar) {
161
 
            searchBar.textbox.value = "";
 
159
            searchBar.value = "";
162
160
            searchBar.textbox.editor.enableUndo(false);
163
161
            searchBar.textbox.editor.enableUndo(true);
164
162
          }