summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-24 11:24:40 +0100
committerBen Murdoch <benm@google.com>2011-06-02 09:53:15 +0100
commit81bc750723a18f21cd17d1b173cd2a4dda9cea6e (patch)
tree7a9e5ed86ff429fd347a25153107221543909b19 /LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt
parent94088a6d336c1dd80a1e734af51e96abcbb689a7 (diff)
downloadexternal_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.zip
external_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.tar.gz
external_webkit-81bc750723a18f21cd17d1b173cd2a4dda9cea6e.tar.bz2
Merge WebKit at r80534: Intial merge by Git
Change-Id: Ia7a83357124c9e1cdb1debf55d9661ec0bd09a61
Diffstat (limited to 'LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt')
-rw-r--r--LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt b/LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt
index 9d04b0a..5f85c81 100644
--- a/LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt
+++ b/LayoutTests/storage/indexeddb/transaction-event-propagation-expected.txt
@@ -3,20 +3,10 @@ Test event propogation on IDBTransaction.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-webkitIndexedDB.open('name')
-PASS 'onsuccess' in result is true
-PASS 'onerror' in result is true
-PASS 'readyState' in result is true
-An event should fire shortly...
-
-db = event.result
+webkitIndexedDB.open('transaction-event-propagation')
+db = event.target.result
db.setVersion('new version')
-PASS 'onsuccess' in result is true
-PASS 'onerror' in result is true
-PASS 'readyState' in result is true
-An event should fire shortly...
-
-trans = event.result
+trans = event.target.result
PASS trans !== null is true
trans.oncomplete = startTest
Deleted all object stores.
@@ -37,16 +27,22 @@ In IDBDatabase abort capture
PASS dbCaptureFired is false
PASS abortFired is false
PASS dbBubbleFired1 is false
+PASS event.target is trans
+PASS event.currentTarget is db
In abort handler
PASS dbCaptureFired is true
PASS abortFired is false
PASS dbBubbleFired1 is false
+PASS event.target is trans
+PASS event.currentTarget is trans
In IDBDatabase error bubble
PASS dbCaptureFired is true
PASS abortFired is true
PASS dbBubbleFired1 is false
+PASS event.target is trans
+PASS event.currentTarget is db
Verifing success.
trans = db.transaction([], webkitIDBTransaction.READ_WRITE)
@@ -67,11 +63,15 @@ In IDBDatabase complete capture
PASS dbCaptureFired is false
PASS completeFired is false
PASS dbBubbleFired2 is false
+PASS event.target is trans
+PASS event.currentTarget is db
In IDBRequest handler
PASS dbCaptureFired is true
PASS completeFired is false
PASS dbBubbleFired2 is false
+PASS event.target is trans
+PASS event.currentTarget is trans
PASS successfullyParsed is true