Title: [142733] trunk/LayoutTests
Revision
142733
Author
[email protected]
Date
2013-02-13 02:59:18 -0800 (Wed, 13 Feb 2013)

Log Message

Unreviewed test fix: removed redundant testRunnet.notifyDone() call that was causing other test failures.

* inspector/script-execution-state-change-notification.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (142732 => 142733)


--- trunk/LayoutTests/ChangeLog	2013-02-13 10:45:12 UTC (rev 142732)
+++ trunk/LayoutTests/ChangeLog	2013-02-13 10:59:18 UTC (rev 142733)
@@ -1,3 +1,9 @@
+2013-02-13  Vsevolod Vlasov  <[email protected]>
+
+        Unreviewed test fix: removed redundant testRunnet.notifyDone() call that was causing other test failures.
+
+        * inspector/script-execution-state-change-notification.html:
+
 2013-02-13  Zan Dobersek  <[email protected]>
 
         Unreviewed GTK gardening.

Modified: trunk/LayoutTests/inspector/script-execution-state-change-notification.html (142732 => 142733)


--- trunk/LayoutTests/inspector/script-execution-state-change-notification.html	2013-02-13 10:45:12 UTC (rev 142732)
+++ trunk/LayoutTests/inspector/script-execution-state-change-notification.html	2013-02-13 10:59:18 UTC (rev 142733)
@@ -15,12 +15,6 @@
         testRunner.overridePreference("WebKitJavaScriptEnabled", false);
 }
 
-function completeTest()
-{
-    if (window.testRunner)
-        testRunner.notifyDone();
-}
-
 function test()
 {
     function scriptsEnabled(isEnabled)
@@ -42,9 +36,8 @@
 
     function finish()
     {
-        InspectorTest.completeTest();
         InspectorTest.addResult("Finished verification.")
-        InspectorTest.evaluateInPage("completeTest();");
+        InspectorTest.completeTest();
     }
 
     InspectorTest.addSniffer(WebInspector.PageDispatcher.prototype, "scriptsEnabled", scriptsEnabled, true);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to