summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/system-state-and-capabilities/the-navigator-object/navigator.any.js
blob: 07bccb788052e7ce2cb722558e416b5c017ed9f0 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
  var compatibilityMode;
  if (navigator.userAgent.includes("Chrome")) {
    compatibilityMode = "Chrome";
  } else if (navigator.userAgent.includes("WebKit")) {
    compatibilityMode = "WebKit";
  } else {
    compatibilityMode = "Gecko";
  }

  test(function() {
    assert_equals(navigator.appCodeName, "Mozilla");
  }, "appCodeName");

  test(function() {
    assert_equals(navigator.appName, "Netscape");
  }, "appName");

  test(function() {
    assert_equals(typeof navigator.appVersion, "string",
                  "navigator.appVersion should be a string");
  }, "appVersion");

  test(function() {
    assert_equals(typeof navigator.platform, "string",
                  "navigator.platform should be a string");
  }, "platform");

  test(function() {
    assert_equals(navigator.product, "Gecko");
  }, "product");

  test(function() {
    if ("window" in self) {
      if (compatibilityMode == "Gecko") {
        assert_equals(navigator.productSub, "20100101");
      } else {
        assert_equals(navigator.productSub, "20030107");
      }
    } else {
      assert_false("productSub" in navigator);
    }
  }, "productSub");

  test(function() {
    assert_equals(typeof navigator.userAgent, "string",
                  "navigator.userAgent should be a string");
  }, "userAgent type");

  async_test(function() {
    var request = new XMLHttpRequest();
    request.onload = this.step_func_done(function() {
      assert_equals("User-Agent: " + navigator.userAgent + "\n",
                    request.response,
                    "userAgent should return the value sent in the " +
                    "User-Agent header");
    });
    request.open("GET", "/xhr/resources/inspect-headers.py?" +
                        "filter_name=User-Agent");
    request.send();
  }, "userAgent value");

  test(function() {
    if ("window" in self) {
      if (compatibilityMode == "Chrome") {
        assert_equals(navigator.vendor, "Google Inc.");
      } else if (compatibilityMode == "WebKit") {
        assert_equals(navigator.vendor, "Apple Computer, Inc.");
      } else {
        assert_equals(navigator.vendor, "");
      }
    } else {
      assert_false("vendor" in navigator);
    }
  }, "vendor");

  test(function() {
    if ("window" in self) {
      assert_equals(navigator.vendorSub, "");
    } else {
      assert_false("vendorSub" in navigator);
    }
  }, "vendorSub");

  // "If the navigator compatibility mode is Gecko, then the user agent must
  // also support the following partial interface" (taintEnabled() and oscpu)
  // See https://www.w3.org/Bugs/Public/show_bug.cgi?id=22555 and
  // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27820

  test(function() {
    if ("window" in self && compatibilityMode == "Gecko") {
      assert_false(navigator.taintEnabled());
    } else {
      assert_false("taintEnabled" in navigator);
    }
  }, "taintEnabled");

  test(function() {
    if ("window" in self && compatibilityMode == "Gecko") {
      assert_equals(typeof navigator.oscpu, "string",
                    "navigator.oscpu should be a string");
    } else {
      assert_false("oscpu" in navigator);
    }
  }, "oscpu");

done()