X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=LayoutTests%2Fstorage%2Findexeddb%2Fkeyrange.html;h=add355a87ed99dc71d2c9786e8cf0860d25de361;hb=b96e33af77ac7d81a666d5aa202235b793aeeb21;hp=5af24019164f1a47300f67ebfc51ca6582e7104c;hpb=2632619e54bc9f41ccea7c574710fe213e49212d;p=framework%2Fweb%2Fwebkit-efl.git diff --git a/LayoutTests/storage/indexeddb/keyrange.html b/LayoutTests/storage/indexeddb/keyrange.html index 5af2401..add355a 100755 --- a/LayoutTests/storage/indexeddb/keyrange.html +++ b/LayoutTests/storage/indexeddb/keyrange.html @@ -1,8 +1,6 @@ - - @@ -127,48 +125,48 @@ function test() checkBoundKeyRange("'aaf'", "'abf'", true, true); try { - debug("Passing an invalid key into only([])"); - webkitIDBKeyRange.only([]); + debug("Passing an invalid key into only({})"); + webkitIDBKeyRange.only({}); testFailed("No exception thrown"); } catch (e) { testPassed("Caught exception: " + e.toString()); } try { - debug("Passing an invalid key into upperBound([])"); - webkitIDBKeyRange.upperBound([]); + debug("Passing an invalid key into upperBound({})"); + webkitIDBKeyRange.upperBound({}); testFailed("No exception thrown"); } catch (e) { testPassed("Caught exception: " + e.toString()); } try { - debug("Passing an invalid key into lowerBound([])"); - webkitIDBKeyRange.lowerBound([]); + debug("Passing an invalid key into lowerBound({})"); + webkitIDBKeyRange.lowerBound({}); testFailed("No exception thrown"); } catch (e) { testPassed("Caught exception: " + e.toString()); } try { - debug("Passing an invalid key into bound(null, [])"); - webkitIDBKeyRange.bound(null, []); + debug("Passing an invalid key into bound(null, {})"); + webkitIDBKeyRange.bound(null, {}); testFailed("No exception thrown"); } catch (e) { testPassed("Caught exception: " + e.toString()); } try { - debug("Passing an invalid key into bound([],null)"); - webkitIDBKeyRange.bound([], null); + debug("Passing an invalid key into bound({},null)"); + webkitIDBKeyRange.bound({}, null); testFailed("No exception thrown"); } catch (e) { testPassed("Caught exception: " + e.toString()); } try { - debug("Passing an invalid key into bound([], [])"); - webkitIDBKeyRange.bound([], []); + debug("Passing an invalid key into bound({}, {})"); + webkitIDBKeyRange.bound({}, {}); testFailed("No exception thrown"); } catch (e) { testPassed("Caught exception: " + e.toString()); @@ -177,7 +175,6 @@ function test() test(); -var successfullyParsed = true; done();