Title: [124781] trunk/LayoutTests
Revision
124781
Author
[email protected]
Date
2012-08-06 10:37:12 -0700 (Mon, 06 Aug 2012)

Log Message

Web Inspector: rename WorkerAgent.setWorkerInspectionEnabled to WorkerAgent.enable and make it return error
https://bugs.webkit.org/show_bug.cgi?id=92545

Unreviewed trivial test fix after r124765.

* http/tests/inspector-enabled/dedicated-workers-list.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (124780 => 124781)


--- trunk/LayoutTests/ChangeLog	2012-08-06 17:28:12 UTC (rev 124780)
+++ trunk/LayoutTests/ChangeLog	2012-08-06 17:37:12 UTC (rev 124781)
@@ -1,3 +1,12 @@
+2012-08-06  Csaba Osztrogonác  <[email protected]>
+
+        Web Inspector: rename WorkerAgent.setWorkerInspectionEnabled to WorkerAgent.enable and make it return error
+        https://bugs.webkit.org/show_bug.cgi?id=92545
+
+        Unreviewed trivial test fix after r124765.
+
+        * http/tests/inspector-enabled/dedicated-workers-list.html:
+
 2012-08-06  Andrei Poenaru  <[email protected]>
 
         Web Inspector: Protocol: Add "namedFlowCreated" and "namedFlowRemoved" events

Modified: trunk/LayoutTests/http/tests/inspector-enabled/dedicated-workers-list.html (124780 => 124781)


--- trunk/LayoutTests/http/tests/inspector-enabled/dedicated-workers-list.html	2012-08-06 17:28:12 UTC (rev 124780)
+++ trunk/LayoutTests/http/tests/inspector-enabled/dedicated-workers-list.html	2012-08-06 17:37:12 UTC (rev 124781)
@@ -29,12 +29,12 @@
 
 function test()
 {
-    WorkerAgent.setWorkerInspectionEnabled(false, didDisableWorkerInspection);
+    WorkerAgent.disable(didDisableWorkerInspection);
 
     function didDisableWorkerInspection()
     {
         WebInspector.workerManager.addEventListener(WebInspector.WorkerManager.Events.WorkerAdded, workerAdded, this);
-        WorkerAgent.setWorkerInspectionEnabled(true);
+        WorkerAgent.enable();
         InspectorTest.addResult("Worker inspection enabled");
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to