mirror of
https://github.com/servo/servo.git
synced 2025-08-15 02:15:33 +01:00
WebBluetooth API classes
This commit is contained in:
parent
00628704ca
commit
e7d70cfabf
28 changed files with 999 additions and 28 deletions
|
@ -8,6 +8,7 @@ interface Navigator {
|
|||
// objects implementing this interface also implement the interfaces given below
|
||||
};
|
||||
Navigator implements NavigatorID;
|
||||
Navigator implements NavigatorBluetooth;
|
||||
//Navigator implements NavigatorLanguage;
|
||||
//Navigator implements NavigatorOnLine;
|
||||
//Navigator implements NavigatorContentUtils;
|
||||
|
@ -25,3 +26,8 @@ interface NavigatorID {
|
|||
boolean taintEnabled(); // constant false
|
||||
readonly attribute DOMString userAgent;
|
||||
};
|
||||
|
||||
[NoInterfaceObject]
|
||||
interface NavigatorBluetooth {
|
||||
readonly attribute Bluetooth bluetooth;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue