| Index: third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| diff --git a/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp b/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| index e9deb8ae286b79d0c7ce49dc13e84e30f150b072..b1f2f545ff4bd2e8df7dbb798f593dee67a1eeed 100644
|
| --- a/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| +++ b/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| @@ -47,8 +47,9 @@ void DOMWindowStorageController::didAddEventListener(
|
| // to receive notifications about storage events that might be triggered in
|
| // other processes. Rather than subscribe to these notifications explicitly,
|
| // we subscribe to them implicitly to simplify the work done by the system.
|
| - DOMWindowStorage::from(*window).localStorage(IGNORE_EXCEPTION);
|
| - DOMWindowStorage::from(*window).sessionStorage(IGNORE_EXCEPTION);
|
| + DOMWindowStorage::from(*window).localStorage(IGNORE_EXCEPTION_FOR_TESTING);
|
| + DOMWindowStorage::from(*window).sessionStorage(
|
| + IGNORE_EXCEPTION_FOR_TESTING);
|
| }
|
| }
|
|
|
|
|