Index: Source/core/frame/Navigator.idl |
diff --git a/Source/core/frame/Navigator.idl b/Source/core/frame/Navigator.idl |
index b6e566a6a028592b05b37b88e8b6941b6fec3201..d9665b060ac98febe789166745bafdc6766b492b 100644 |
--- a/Source/core/frame/Navigator.idl |
+++ b/Source/core/frame/Navigator.idl |
@@ -17,22 +17,25 @@ |
Boston, MA 02110-1301, USA. |
*/ |
-// http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#navigator |
+// https://html.spec.whatwg.org/#the-navigator-object |
[ |
GarbageCollected, |
] interface Navigator { |
- readonly attribute boolean cookieEnabled; // FIXME: move to NavigatorStorageUtils |
+ // objects implementing this interface also implement the interfaces given below |
- void getStorageUpdates(); // FIXME: Remove this method or rename to yieldForStorageUpdates. |
+ // TODO(philipj): vendorSub should be on NavigatorID. |
+ [MeasureAs=NavigatorVendorSub] readonly attribute DOMString vendorSub; |
- // Non-standard. |
+ // TODO(philipj): productSub and vendor are not yet in the spec: |
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27954 |
[MeasureAs=NavigatorProductSub] readonly attribute DOMString productSub; |
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27786 |
[MeasureAs=NavigatorVendor] readonly attribute DOMString vendor; |
- [MeasureAs=NavigatorVendorSub] readonly attribute DOMString vendorSub; |
}; |
Navigator implements NavigatorCPU; |
Navigator implements NavigatorID; |
Navigator implements NavigatorLanguage; |
Navigator implements NavigatorOnLine; |
+Navigator implements NavigatorStorageUtils; |