blob: bea00f1477dbe01dfbd9ccda229a8fdcc3ddfb46 (
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
|
---
title: NavigatorID
slug: orphaned/Web/API/NavigatorID
tags:
- API
translation_of: Web/API/NavigatorID
original_slug: Web/API/NavigatorID
---
<p>{{APIRef("HTML DOM")}}</p>
<p>The <code><strong>NavigatorID</strong></code> interface contains methods and properties related to the identity of the browser.</p>
<p>There is no object of type <code>NavigatorID</code>, but other interfaces, like {{domxref("Navigator")}} or {{domxref("WorkerNavigator")}}, implement it.</p>
<h2 id="Properties">Properties</h2>
<p><em>The <code>NavigatorID</code></em><em> interface doesn't inherit any property.</em></p>
<dl>
<dt>{{domxref("NavigatorID.appCodeName")}} {{readonlyInline}}{{deprecated_inline}}</dt>
<dd>Always returns <code>'Mozilla'</code>, on any browser. This property is kept only for compatibility purpose.</dd>
<dt>{{domxref("NavigatorID.appName")}} {{readonlyInline}} {{deprecated_inline}}</dt>
<dd>Returns the official name of the browser. Do not rely on this property to return the correct value.</dd>
<dt>{{domxref("NavigatorID.appVersion")}} {{readonlyInline}} {{deprecated_inline}}</dt>
<dd>Returns the version of the browser as a string. Do not rely on this property to return the correct value.</dd>
<dt>{{domxref("NavigatorID.platform")}} {{readonlyInline}} {{deprecated_inline}}</dt>
<dd>Returns a string representing the platform of the browser. Do not rely on this property to return the correct value.</dd>
<dt>{{domxref("NavigatorID.product")}} {{readonlyInline}} {{deprecated_inline}}</dt>
<dd>Always returns <code>'Gecko'</code>, on any browser. This property is kept only for compatibility purpose.</dd>
<dt>{{domxref("NavigatorID.userAgent")}} {{readonlyInline}}</dt>
<dd>Returns the user agent string for the current browser.</dd>
</dl>
<h2 id="Methods">Methods</h2>
<p><em>The </em><em><code>NavigatorID</code></em><em> interface doesn't inherit any method.</em></p>
<dl>
<dt>{{domxref("NavigatorID.taintEnabled()")}} {{deprecated_inline()}}</dt>
<dd>Always returns <code>false</code>. JavaScript taint/untaint functions were removed in JavaScript 1.2. This method is only kept for compatibility purpose</dd>
</dl>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#navigatorid', 'NavigatorID')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Added the <code>appCodeName</code> property and the <code>taintEnabled()</code> method, for compatibility purpose.</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', '#navigatorid', 'NavigatorID')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>Initial specification.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("api.NavigatorID")}}</p>
<h2 id="See_also">See also</h2>
<ul>
<li>The {{domxref("Navigator")}} and {{domxref("WorkerNavigator")}} interfaces that implement it.</li>
</ul>
|