Title: [126589] trunk/LayoutTests
Revision
126589
Author
[email protected]
Date
2012-08-24 08:40:53 -0700 (Fri, 24 Aug 2012)

Log Message

Web Inspector: Unreviewed, fix test flakiness due to the recently introduced lazy panel loading.

* inspector/debugger/scripts-file-selector.html:
* inspector/debugger/step-through-event-listeners.html:
* inspector/elements/edit-dom-actions.html:
* inspector/elements/edit-style-attribute.html:
* inspector/timeline/timeline-enum-stability.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (126588 => 126589)


--- trunk/LayoutTests/ChangeLog	2012-08-24 15:30:39 UTC (rev 126588)
+++ trunk/LayoutTests/ChangeLog	2012-08-24 15:40:53 UTC (rev 126589)
@@ -1,3 +1,13 @@
+2012-08-24  Alexander Pavlov  <[email protected]>
+
+        Web Inspector: Unreviewed, fix test flakiness due to the recently introduced lazy panel loading.
+
+        * inspector/debugger/scripts-file-selector.html:
+        * inspector/debugger/step-through-event-listeners.html:
+        * inspector/elements/edit-dom-actions.html:
+        * inspector/elements/edit-style-attribute.html:
+        * inspector/timeline/timeline-enum-stability.html:
+
 2012-08-24  Tommy Widenflycht  <[email protected]>
 
         MediaStream API: Add readyState functionality to RTCPeerConnection

Modified: trunk/LayoutTests/inspector/debugger/scripts-file-selector.html (126588 => 126589)


--- trunk/LayoutTests/inspector/debugger/scripts-file-selector.html	2012-08-24 15:30:39 UTC (rev 126588)
+++ trunk/LayoutTests/inspector/debugger/scripts-file-selector.html	2012-08-24 15:40:53 UTC (rev 126589)
@@ -9,6 +9,7 @@
     // Always use indentation in scripts drop box
     WebInspector._isMac = false;
 
+    WebInspector.showPanel("scripts");
     var navigatorFileSelector = new WebInspector.ScriptsNavigator();
 
     var contentProvider = {

Modified: trunk/LayoutTests/inspector/debugger/step-through-event-listeners.html (126588 => 126589)


--- trunk/LayoutTests/inspector/debugger/step-through-event-listeners.html	2012-08-24 15:30:39 UTC (rev 126588)
+++ trunk/LayoutTests/inspector/debugger/step-through-event-listeners.html	2012-08-24 15:40:53 UTC (rev 126589)
@@ -28,7 +28,7 @@
 
 function test()
 {
-    var pane = WebInspector.panels.scripts.sidebarPanes.eventListenerBreakpoints;
+    var pane = WebInspector.showPanel("scripts").sidebarPanes.eventListenerBreakpoints;
     InspectorTest.runDebuggerTestSuite([
         function testClickBreakpoint(next)
         {

Modified: trunk/LayoutTests/inspector/elements/edit-dom-actions.html (126588 => 126589)


--- trunk/LayoutTests/inspector/elements/edit-dom-actions.html	2012-08-24 15:30:39 UTC (rev 126588)
+++ trunk/LayoutTests/inspector/elements/edit-dom-actions.html	2012-08-24 15:40:53 UTC (rev 126589)
@@ -7,6 +7,7 @@
 function test()
 {
     // Save time on style updates.
+    WebInspector.showPanel("elements");
     WebInspector.StylesSidebarPane.prototype.update = function() {};
     WebInspector.MetricsSidebarPane.prototype.update = function() {};
 

Modified: trunk/LayoutTests/inspector/elements/edit-style-attribute.html (126588 => 126589)


--- trunk/LayoutTests/inspector/elements/edit-style-attribute.html	2012-08-24 15:30:39 UTC (rev 126588)
+++ trunk/LayoutTests/inspector/elements/edit-style-attribute.html	2012-08-24 15:40:53 UTC (rev 126589)
@@ -17,6 +17,7 @@
 function test()
 {
     // Save time on style updates.
+    WebInspector.showPanel("elements");
     WebInspector.StylesSidebarPane.prototype.update = function() {};
     WebInspector.MetricsSidebarPane.prototype.update = function() {};
 

Modified: trunk/LayoutTests/inspector/timeline/timeline-enum-stability.html (126588 => 126589)


--- trunk/LayoutTests/inspector/timeline/timeline-enum-stability.html	2012-08-24 15:30:39 UTC (rev 126588)
+++ trunk/LayoutTests/inspector/timeline/timeline-enum-stability.html	2012-08-24 15:40:53 UTC (rev 126589)
@@ -5,6 +5,7 @@
 
 function test()
 {
+    WebInspector.showPanel("timeline");
     InspectorTest.addObject(WebInspector.TimelineModel.RecordType);
     InspectorTest.completeTest();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to