| Index: third_party/WebKit/LayoutTests/storage/domstorage/events/script-tests/case-sensitive.js
|
| diff --git a/third_party/WebKit/LayoutTests/storage/domstorage/events/script-tests/case-sensitive.js b/third_party/WebKit/LayoutTests/storage/domstorage/events/script-tests/case-sensitive.js
|
| index 8d961a058271eaf77b5649d63f5d74fb8486380a..46451260cdece7f7748a43ffec928e331430179f 100644
|
| --- a/third_party/WebKit/LayoutTests/storage/domstorage/events/script-tests/case-sensitive.js
|
| +++ b/third_party/WebKit/LayoutTests/storage/domstorage/events/script-tests/case-sensitive.js
|
| @@ -15,6 +15,16 @@ function test(storageString, callback)
|
| evalAndLog("storage.clear()");
|
| shouldBe("storage.length", "0");
|
|
|
| + iframe.onload = onload;
|
| + iframe.src = "about:blank";
|
| +}
|
| +
|
| +function onload()
|
| +{
|
| + iframe.contentWindow.onstorage = function (e) {
|
| + window.parent.storageEventList.push(e);
|
| + };
|
| +
|
| debug("");
|
| debug("Verify storage events are case sensitive");
|
| evalAndLog("storage.foo = 'test'");
|
|
|