Title: [200203] trunk/LayoutTests
Revision
200203
Author
beid...@apple.com
Date
2016-04-28 12:22:21 -0700 (Thu, 28 Apr 2016)

Log Message

REGRESSION(r200163): inspector/indexeddb/requestDatabaseNames.html is flaky on Mac.
https://bugs.webkit.org/show_bug.cgi?id=157141

Unreviewed.

Add one more chunk of logging here to add even more supporting evidence to our theory.

* inspector/indexeddb/requestDatabaseNames-expected.txt:
* inspector/indexeddb/requestDatabaseNames.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (200202 => 200203)


--- trunk/LayoutTests/ChangeLog	2016-04-28 18:47:20 UTC (rev 200202)
+++ trunk/LayoutTests/ChangeLog	2016-04-28 19:22:21 UTC (rev 200203)
@@ -1,3 +1,15 @@
+2016-04-28  Brady Eidson  <beid...@apple.com>
+
+        REGRESSION(r200163): inspector/indexeddb/requestDatabaseNames.html is flaky on Mac.
+        https://bugs.webkit.org/show_bug.cgi?id=157141
+
+        Unreviewed.
+
+        Add one more chunk of logging here to add even more supporting evidence to our theory.
+        
+        * inspector/indexeddb/requestDatabaseNames-expected.txt:
+        * inspector/indexeddb/requestDatabaseNames.html:
+
 2016-04-28  Ryan Haddad  <ryanhad...@apple.com>
 
         Skipping media/video-with-file-url-allowed-by-csp-media-src-star-with-AllowContentSecurityPolicySourceStarToMatchAnyProtocol-enabled.html

Modified: trunk/LayoutTests/inspector/indexeddb/requestDatabaseNames-expected.txt (200202 => 200203)


--- trunk/LayoutTests/inspector/indexeddb/requestDatabaseNames-expected.txt	2016-04-28 18:47:20 UTC (rev 200202)
+++ trunk/LayoutTests/inspector/indexeddb/requestDatabaseNames-expected.txt	2016-04-28 19:22:21 UTC (rev 200203)
@@ -4,6 +4,7 @@
 CONSOLE MESSAGE: line 10: Created Database '𐍆'
 
 PASS: No IndexedDB databases should exist initially
+[]
 Created Database 'Database1'
 PASS: A single IndexedDB database should exist
 ["Database1"]

Modified: trunk/LayoutTests/inspector/indexeddb/requestDatabaseNames.html (200202 => 200203)


--- trunk/LayoutTests/inspector/indexeddb/requestDatabaseNames.html	2016-04-28 18:47:20 UTC (rev 200202)
+++ trunk/LayoutTests/inspector/indexeddb/requestDatabaseNames.html	2016-04-28 19:22:21 UTC (rev 200203)
@@ -35,6 +35,7 @@
                 IndexedDBAgent.requestDatabaseNames(WebInspector.frameResourceManager.mainFrame.securityOrigin, function(error, names) {
                     InspectorTest.expectNoError(error);
                     InspectorTest.expectThat(names.length === 0, "No IndexedDB databases should exist initially");
+                    InspectorTest.log(JSON.stringify(names));
                     InspectorTest.evaluateInPage("createDatabase('Database1')");
                 });
             }
@@ -72,9 +73,6 @@
         {
             action: function() {
                 IndexedDBAgent.requestDatabaseNames(WebInspector.frameResourceManager.mainFrame.securityOrigin, function(error, names) {
-                    for (n in names)
-                        alert(names.n);
-
                     InspectorTest.expectNoError(error);
                     InspectorTest.expectThat(names.length === 4, "Four IndexedDB databases should exist");
                     InspectorTest.log(JSON.stringify(names));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to