Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: fd5bdc3dc67056391fd7680fd9bb8352113c250f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 ******************************************************************************
 *
 **/
/**
  * Object navigator()
  * @type navigator
  * @super Object
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535867.aspx
*/

function navigator(){};
navigator.prototype= new Object();
/**
  * Property appCodeName
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533077.aspx
*/

navigator.prototype.appCodeName="";
/**
  * Property appMinorVersion
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533078.aspx
*/

navigator.prototype.appMinorVersion="";
/**
  * Property appName
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533079.aspx
*/

navigator.prototype.appName="";
/**
  * Property appVersion
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533080.aspx
*/

navigator.prototype.appVersion="";
/**
  * Property browserLanguage
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533542.aspx
*/

navigator.prototype.browserLanguage="";
/**
  * Property cookieEnabled
  * @type Boolean
  * @returns {Boolean}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533694.aspx
*/

navigator.prototype.cookieEnabled=false;
/**
  * Property cpuClass
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533697.aspx
*/

navigator.prototype.cpuClass="";
/**
  * Property onLine
  * @type Boolean
  * @returns {Boolean}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534307.aspx
*/

navigator.prototype.onLine=false;
/**
  * Property platform
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534340.aspx
*/

navigator.prototype.platform="";
/**
  * Property systemLanguage
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534653.aspx
*/

navigator.prototype.systemLanguage="";
/**
  * Property userAgent
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534712.aspx
*/

navigator.prototype.userAgent="";
/**
  * Property userLanguage
  * @type String
  * @returns {String}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534713.aspx
*/

navigator.prototype.userLanguage="";
/**
  * Property plugins
  * @type plugins
  * @returns {plugins}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms537477.aspx
*/

navigator.prototype.plugins= new plugins();
/**
  * function javaEnabled()
  * @type Boolean
  * @returns {Boolean}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536610.aspx
*/

navigator.prototype.javaEnabled=function(){};
/**
  * function taintEnabled()
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536778.aspx
*/

navigator.prototype.taintEnabled=function(){};
/**
  * Property userProfile
  * @type userProfile
  * @returns {userProfile}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535915.aspx
*/

navigator.prototype.userProfile= new userProfile();
/**
  * Property plugins
  * @type plugins
  * @returns {plugins}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms537477.aspx
*/

navigator.prototype.plugins= new plugins();
/**
  * Property embed
  * @type embed
  * @returns {embed}
  * @memberOf navigator
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535245.aspx
*/

navigator.prototype.embed= new embed();

Back to the top