mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Update web-platform-tests to revision e45156b5e558c062a609356905c83a0258c516e3
This commit is contained in:
parent
9f6005be16
commit
5fcf52d946
199 changed files with 4430 additions and 530 deletions
|
@ -171,7 +171,7 @@ interface IDBCursor {
|
|||
readonly attribute IDBCursorDirection direction;
|
||||
readonly attribute any key;
|
||||
readonly attribute any primaryKey;
|
||||
readonly attribute IDBRequest request;
|
||||
[SameObject] readonly attribute IDBRequest request;
|
||||
|
||||
void advance([EnforceRange] unsigned long count);
|
||||
void continue(optional any key);
|
||||
|
|
|
@ -15,11 +15,14 @@ interface WakeLock : EventTarget {
|
|||
readonly attribute WakeLockType type;
|
||||
readonly attribute boolean active;
|
||||
attribute EventHandler onactivechange;
|
||||
Promise<void> request();
|
||||
void abort();
|
||||
Promise<void> request(optional WakeLockRequestOptions options);
|
||||
static sequence<WakeLock> query(optional WakeLockQueryFilter filter);
|
||||
};
|
||||
|
||||
dictionary WakeLockRequestOptions {
|
||||
AbortSignal? signal = null;
|
||||
};
|
||||
|
||||
dictionary WakeLockQueryFilter {
|
||||
WakeLockType? type;
|
||||
boolean? active;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue