summaryrefslogtreecommitdiffstats
path: root/webbrowser/base/content/browser-uacompat.js
blob: 933aa55d16be7d6f252c467b369b740d769f9bea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

var UserAgentCompatibility = {
  PREF_UA_COMPAT: "general.useragent.compatMode",
  PREF_UA_COMPAT_GECKO: "general.useragent.compatMode.gecko",
  PREF_UA_COMPAT_FIREFOX: "general.useragent.compatMode.firefox",
  
  init: function() {
    this.checkPreferences();
    Services.prefs.addObserver(this.PREF_UA_COMPAT, this, false);
    Services.prefs.addObserver(this.PREF_UA_COMPAT_GECKO, this, false);
    Services.prefs.addObserver(this.PREF_UA_COMPAT_FIREFOX, this, false);
  },

  uninit: function() {
    Services.prefs.removeObserver(this.PREF_UA_COMPAT, this, false);
    Services.prefs.removeObserver(this.PREF_UA_COMPAT_GECKO, this, false);
    Services.prefs.removeObserver(this.PREF_UA_COMPAT_FIREFOX, this, false);
  },

  observe: function() {
    this.checkPreferences();
  },
  
  checkPreferences: function() {
    var compatMode = Services.prefs.getIntPref(this.PREF_UA_COMPAT);
    
    switch(compatMode) {
      case 0:
        Services.prefs.setBoolPref(this.PREF_UA_COMPAT_GECKO, false);
        Services.prefs.setBoolPref(this.PREF_UA_COMPAT_FIREFOX, false);
        break;
      case 1:
        Services.prefs.setBoolPref(this.PREF_UA_COMPAT_GECKO, true);
        Services.prefs.setBoolPref(this.PREF_UA_COMPAT_FIREFOX, false);
        break;
      case 2:
        Services.prefs.setBoolPref(this.PREF_UA_COMPAT_GECKO, true);
        Services.prefs.setBoolPref(this.PREF_UA_COMPAT_FIREFOX, true);
        break;
    }
  }
};