Title: [88606] trunk
Revision
88606
Author
[email protected]
Date
2011-06-11 13:21:55 -0700 (Sat, 11 Jun 2011)

Log Message

2011-06-11  Dimitri Glazkov  <[email protected]>

        Unreviewed, rolling out r88569.
        http://trac.webkit.org/changeset/88569
        https://bugs.webkit.org/show_bug.cgi?id=62398

        Broke Chromium browser test:
        IndexedDBBrowserTestWithGCExposed.DatabaseCallbacksTest

        * storage/indexeddb/database-name-undefined-expected.txt: Removed.
        * storage/indexeddb/database-name-undefined.html: Removed.
2011-06-11  Dimitri Glazkov  <[email protected]>

        Unreviewed, rolling out r88569.
        http://trac.webkit.org/changeset/88569
        https://bugs.webkit.org/show_bug.cgi?id=62398

        Broke Chromium browser test:
        IndexedDBBrowserTestWithGCExposed.DatabaseCallbacksTest

        * storage/IDBFactory.idl:

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (88605 => 88606)


--- trunk/LayoutTests/ChangeLog	2011-06-11 20:16:46 UTC (rev 88605)
+++ trunk/LayoutTests/ChangeLog	2011-06-11 20:21:55 UTC (rev 88606)
@@ -1,5 +1,17 @@
 2011-06-11  Dimitri Glazkov  <[email protected]>
 
+        Unreviewed, rolling out r88569.
+        http://trac.webkit.org/changeset/88569
+        https://bugs.webkit.org/show_bug.cgi?id=62398
+
+        Broke Chromium browser test:
+        IndexedDBBrowserTestWithGCExposed.DatabaseCallbacksTest
+
+        * storage/indexeddb/database-name-undefined-expected.txt: Removed.
+        * storage/indexeddb/database-name-undefined.html: Removed.
+
+2011-06-11  Dimitri Glazkov  <[email protected]>
+
         Remove expectation of failure after clobber.
         https://bugs.webkit.org/show_bug.cgi?id=62364
 

Deleted: trunk/LayoutTests/storage/indexeddb/database-name-undefined-expected.txt (88605 => 88606)


--- trunk/LayoutTests/storage/indexeddb/database-name-undefined-expected.txt	2011-06-11 20:16:46 UTC (rev 88605)
+++ trunk/LayoutTests/storage/indexeddb/database-name-undefined-expected.txt	2011-06-11 20:21:55 UTC (rev 88606)
@@ -1,20 +0,0 @@
-Test IndexedDB undefined as record value
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB;
-PASS indexedDB == null is false
-IDBDatabaseException = window.IDBDatabaseException || window.webkitIDBDatabaseException;
-PASS IDBDatabaseException == null is false
-IDBCursor = window.IDBCursor || window.webkitIDBCursor;
-PASS IDBCursor == null is false
-IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;
-PASS IDBKeyRange == null is false
-Expecting exception from indexedDB.open();
-PASS Exception was thrown.
-PASS code is IDBDatabaseException.NON_TRANSIENT_ERR
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Deleted: trunk/LayoutTests/storage/indexeddb/database-name-undefined.html (88605 => 88606)


--- trunk/LayoutTests/storage/indexeddb/database-name-undefined.html	2011-06-11 20:16:46 UTC (rev 88605)
+++ trunk/LayoutTests/storage/indexeddb/database-name-undefined.html	2011-06-11 20:21:55 UTC (rev 88606)
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link rel="stylesheet" href=""
-<script src=""
-<script src=""
-<script src=""
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<script>
-
-description("Test IndexedDB undefined as record value");
-if (window.layoutTestController)
-    layoutTestController.waitUntilDone();
-
-function test()
-{
-    indexedDB = evalAndLog("indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB;");
-    shouldBeFalse("indexedDB == null");
-    IDBDatabaseException = evalAndLog("IDBDatabaseException = window.IDBDatabaseException || window.webkitIDBDatabaseException;");
-    shouldBeFalse("IDBDatabaseException == null");
-    IDBCursor = evalAndLog("IDBCursor = window.IDBCursor || window.webkitIDBCursor;");
-    shouldBeFalse("IDBCursor == null");
-    IDBKeyRange = evalAndLog("IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;");
-    shouldBeFalse("IDBKeyRange == null");
-
-    evalAndExpectException("indexedDB.open();", "IDBDatabaseException.NON_TRANSIENT_ERR");
-    done();
-}
-
-var successfullyParsed = true;
-
-test();
-
-</script>
-</body>
-</html>

Modified: trunk/Source/WebCore/ChangeLog (88605 => 88606)


--- trunk/Source/WebCore/ChangeLog	2011-06-11 20:16:46 UTC (rev 88605)
+++ trunk/Source/WebCore/ChangeLog	2011-06-11 20:21:55 UTC (rev 88606)
@@ -1,5 +1,16 @@
 2011-06-11  Dimitri Glazkov  <[email protected]>
 
+        Unreviewed, rolling out r88569.
+        http://trac.webkit.org/changeset/88569
+        https://bugs.webkit.org/show_bug.cgi?id=62398
+
+        Broke Chromium browser test:
+        IndexedDBBrowserTestWithGCExposed.DatabaseCallbacksTest
+
+        * storage/IDBFactory.idl:
+
+2011-06-11  Dimitri Glazkov  <[email protected]>
+
         Unreviewed, rolling out r88565.
         http://trac.webkit.org/changeset/88565
         https://bugs.webkit.org/show_bug.cgi?id=62401

Modified: trunk/Source/WebCore/storage/IDBFactory.idl (88605 => 88606)


--- trunk/Source/WebCore/storage/IDBFactory.idl	2011-06-11 20:16:46 UTC (rev 88605)
+++ trunk/Source/WebCore/storage/IDBFactory.idl	2011-06-11 20:21:55 UTC (rev 88606)
@@ -28,7 +28,7 @@
     interface [
         Conditional=INDEXED_DATABASE
     ] IDBFactory {
-        [CallWith=ScriptExecutionContext] IDBRequest open(in [ConvertUndefinedOrNullToNullString] DOMString name)
+        [CallWith=ScriptExecutionContext] IDBRequest open(in [ConvertNullToNullString] DOMString name)
             raises (IDBDatabaseException);
     };
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to