device-posture.idl (545B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Device Posture API (https://w3c.github.io/device-posture/) 5 6 [SecureContext, Exposed=(Window)] 7 partial interface Navigator { 8 [SameObject] readonly attribute DevicePosture devicePosture; 9 }; 10 11 [SecureContext, Exposed=(Window)] 12 interface DevicePosture : EventTarget { 13 readonly attribute DevicePostureType type; 14 attribute EventHandler onchange; 15 }; 16 17 enum DevicePostureType { 18 "continuous", 19 "folded" 20 };