Chromium Code Reviews| Index: Source/devtools/front_end/DOMStorage.js |
| diff --git a/Source/devtools/front_end/DOMStorage.js b/Source/devtools/front_end/DOMStorage.js |
| index 0cbe6ee9d609b78b4d08b5ef320a7fc9ca3005c2..91711201ec1ff8d1afa6aefb1df87de4f9472f39 100644 |
| --- a/Source/devtools/front_end/DOMStorage.js |
| +++ b/Source/devtools/front_end/DOMStorage.js |
| @@ -431,7 +431,7 @@ WebInspector.DOMStorageModel.prototype = { |
| */ |
| _domStorageItemUpdated: function(storageId, key, oldValue, newValue) |
| { |
| - var domStorage = this._storages[storageId]; |
| + var domStorage = this.storageForId(storageId); |
|
apavlov
2013/08/06 09:31:18
Can you add a test for this?
aandrey
2013/08/06 10:55:19
this should have been caught by the jscompiler. pl
|
| var storageData = { |
| storage: domStorage, |
| key: key, |