Title: [99316] trunk/LayoutTests
Revision
99316
Author
[email protected]
Date
2011-11-04 13:58:00 -0700 (Fri, 04 Nov 2011)

Log Message

Layout Test storage/indexeddb/exception-in-event-aborts.html is failing
https://bugs.webkit.org/show_bug.cgi?id=71536

Unreviewed. Updated test and expectations.

* storage/indexeddb/exception-in-event-aborts-expected.txt:
* storage/indexeddb/exception-in-event-aborts.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (99315 => 99316)


--- trunk/LayoutTests/ChangeLog	2011-11-04 20:55:37 UTC (rev 99315)
+++ trunk/LayoutTests/ChangeLog	2011-11-04 20:58:00 UTC (rev 99316)
@@ -1,3 +1,13 @@
+2011-11-04  Erik Arvidsson  <[email protected]>
+
+        Layout Test storage/indexeddb/exception-in-event-aborts.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=71536
+
+        Unreviewed. Updated test and expectations.
+
+        * storage/indexeddb/exception-in-event-aborts-expected.txt:
+        * storage/indexeddb/exception-in-event-aborts.html:
+
 2011-11-04  Adrienne Walker  <[email protected]>
 
         [chromium] Unreviewed expectation rebaseline from r99286.

Modified: trunk/LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt (99315 => 99316)


--- trunk/LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt	2011-11-04 20:55:37 UTC (rev 99315)
+++ trunk/LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt	2011-11-04 20:58:00 UTC (rev 99316)
@@ -25,6 +25,7 @@
 event.preventDefault()
 Throwing
 
+PASS Got expected error: 'this exception is expected'
 PASS The transaction was aborted.
 trans = db.transaction(['storeName'], webkitIDBTransaction.READ_WRITE)
 trans._onabort_ = transactionAborted2
@@ -35,6 +36,7 @@
 event.preventDefault()
 Throwing
 
+PASS Got expected error: 'this exception is expected'
 PASS The transaction was aborted.
 trans = db.transaction(['storeName'], webkitIDBTransaction.READ_WRITE)
 trans._onabort_ = unexpectedAbortCallback

Modified: trunk/LayoutTests/storage/indexeddb/exception-in-event-aborts.html (99315 => 99316)


--- trunk/LayoutTests/storage/indexeddb/exception-in-event-aborts.html	2011-11-04 20:55:37 UTC (rev 99315)
+++ trunk/LayoutTests/storage/indexeddb/exception-in-event-aborts.html	2011-11-04 20:58:00 UTC (rev 99316)
@@ -66,6 +66,7 @@
 function transactionAborted1()
 {
     debug("");
+    shouldHaveHadError("this exception is expected");
     testPassed("The transaction was aborted.");
     trans = evalAndLog("trans = db.transaction(['storeName'], webkitIDBTransaction.READ_WRITE)");
     evalAndLog("trans._onabort_ = transactionAborted2");
@@ -79,6 +80,7 @@
 function transactionAborted2()
 {
     debug("");
+    shouldHaveHadError("this exception is expected");
     testPassed("The transaction was aborted.");
     trans = evalAndLog("trans = db.transaction(['storeName'], webkitIDBTransaction.READ_WRITE)");
     evalAndLog("trans._onabort_ = unexpectedAbortCallback");
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to