| Index: core/page/Navigator.idl
|
| diff --git a/core/page/Navigator.idl b/core/page/Navigator.idl
|
| index 0c3e09da8eacdf481d25a86b0abd4e2f7c7a3e57..79f322d89f4804ae2c076cb5d5e6e72de0516659 100644
|
| --- a/core/page/Navigator.idl
|
| +++ b/core/page/Navigator.idl
|
| @@ -19,22 +19,20 @@
|
|
|
| interface Navigator {
|
| readonly attribute DOMString appCodeName;
|
| - readonly attribute DOMString appName;
|
| - readonly attribute DOMString appVersion;
|
| readonly attribute DOMString language;
|
| - readonly attribute DOMString userAgent;
|
| - readonly attribute DOMString platform;
|
| readonly attribute PluginArray plugins;
|
| readonly attribute MimeTypeArray mimeTypes;
|
| readonly attribute DOMString product;
|
| - readonly attribute DOMString productSub;
|
| - readonly attribute DOMString vendor;
|
| - readonly attribute DOMString vendorSub;
|
| readonly attribute boolean cookieEnabled;
|
| boolean javaEnabled();
|
|
|
| - readonly attribute boolean onLine;
|
| -
|
| void getStorageUpdates(); // FIXME: Remove this method or rename to yieldForStorageUpdates.
|
| +
|
| + // Non-standard.
|
| + [MeasureAs=NavigatorProductSub] readonly attribute DOMString productSub;
|
| + [MeasureAs=NavigatorVendor] readonly attribute DOMString vendor;
|
| + [MeasureAs=NavigatorVendorSub] readonly attribute DOMString vendorSub;
|
| };
|
|
|
| +Navigator implements NavigatorID;
|
| +Navigator implements NavigatorOnLine;
|
|
|