diff options
Diffstat (limited to 'WebCore/page/Coordinates.idl')
-rw-r--r-- | WebCore/page/Coordinates.idl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WebCore/page/Coordinates.idl b/WebCore/page/Coordinates.idl index 6318212..f6c82b5 100644 --- a/WebCore/page/Coordinates.idl +++ b/WebCore/page/Coordinates.idl @@ -28,13 +28,13 @@ module core { interface Coordinates { readonly attribute double latitude; readonly attribute double longitude; - readonly attribute double altitude; + readonly attribute [Custom] double altitude; readonly attribute double accuracy; - readonly attribute double altitudeAccuracy; - readonly attribute double heading; - readonly attribute double speed; + readonly attribute [Custom] double altitudeAccuracy; + readonly attribute [Custom] double heading; + readonly attribute [Custom] double speed; -#if defined(LANGUAGE_JAVASCRIPT) +#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT [DontEnum] DOMString toString(); #endif }; |