mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Implement Storage::SupportedPropertyNames
This commit is contained in:
parent
f30f40b12d
commit
e7a3220bc1
5 changed files with 50 additions and 3 deletions
|
@ -21,6 +21,9 @@ pub enum StorageTaskMsg {
|
|||
/// gets the name of the key at the specified index in the associated storage data
|
||||
Key(IpcSender<Option<DOMString>>, Url, StorageType, u32),
|
||||
|
||||
/// Gets the available keys in the associated storage data
|
||||
Keys(IpcSender<Vec<DOMString>>, Url, StorageType),
|
||||
|
||||
/// gets the value associated with the given key in the associated storage data
|
||||
GetItem(IpcSender<Option<DOMString>>, Url, StorageType, DOMString),
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue