summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/domstorage/events/script-tests/case-sensitive.js
blob: b5038a8228b21ed303989d7ea55feec9ad762df7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
description("Verify that storage events fire even when only the case of the value changes.");

function test(storageString, callback)
{
    window.completionCallback = callback;
    window.storage = eval(storageString);
    if (!storage) {
        testFailed(storageString + " DOES NOT exist");
        return;
    }

    debug("Testing " + storageString);

    evalAndLog("storage.clear()");
    shouldBe("storage.length", "0");

    debug("");
    debug("Verify storage events are case sensitive");
    evalAndLog("storage.foo = 'test'");

    runAfterStorageEvents(step1);
}

function step1()
{
    debug("Reset storage event list");
    evalAndLog("storageEventList = new Array()");
    evalAndLog("storage.foo = 'test'");

    runAfterStorageEvents(step2);
}

function step2()
{
    shouldBe("storageEventList.length", "0");
    evalAndLog("storage.foo = 'TEST'");

    runAfterStorageEvents(step3);
}

function step3()
{
    shouldBe("storageEventList.length", "1");

    completionCallback();
}

testStorages(test);

var successfullyParsed = true;