Index: Source/devtools/protocol.json |
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json |
index 63857af640ab87c441bb60d7f5c491218fc114e2..8d28fdf86c9031e38e1e36831b80c30c448c6cf7 100644 |
--- a/Source/devtools/protocol.json |
+++ b/Source/devtools/protocol.json |
@@ -1438,6 +1438,17 @@ |
"description": "Disables storage tracking, prevents storage events from being sent to the client." |
}, |
{ |
+ "name": "getDOMStorageItem", |
+ "parameters": [ |
+ { "name": "storageId", "$ref": "StorageId" }, |
+ { "name": "key", "type": "string" } |
+ ], |
+ "returns": [ |
+ { "name": "exists", "type": "boolean" }, |
+ { "name": "value", "type": "string" } |
apavlov
2013/07/31 12:51:35
make this "optional": true and get rid of the "exi
|
+ ] |
+ }, |
+ { |
"name": "getDOMStorageItems", |
"parameters": [ |
{ "name": "storageId", "$ref": "StorageId" } |