Title: [88941] trunk/LayoutTests
Revision
88941
Author
[email protected]
Date
2011-06-15 08:59:04 -0700 (Wed, 15 Jun 2011)

Log Message

2011-06-15  Pavel Feldman  <[email protected]>

        Not reviewed: fixing new inspector test.

        * inspector/debugger/error-in-watch-expressions-expected.txt:
        * inspector/debugger/error-in-watch-expressions.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (88940 => 88941)


--- trunk/LayoutTests/ChangeLog	2011-06-15 15:44:00 UTC (rev 88940)
+++ trunk/LayoutTests/ChangeLog	2011-06-15 15:59:04 UTC (rev 88941)
@@ -1,3 +1,10 @@
+2011-06-15  Pavel Feldman  <[email protected]>
+
+        Not reviewed: fixing new inspector test.
+
+        * inspector/debugger/error-in-watch-expressions-expected.txt:
+        * inspector/debugger/error-in-watch-expressions.html:
+
 2011-06-15  Stephen White  <[email protected]>
 
         Unreviewed; chromium test expectations update.

Modified: trunk/LayoutTests/inspector/debugger/error-in-watch-expressions-expected.txt (88940 => 88941)


--- trunk/LayoutTests/inspector/debugger/error-in-watch-expressions-expected.txt	2011-06-15 15:44:00 UTC (rev 88940)
+++ trunk/LayoutTests/inspector/debugger/error-in-watch-expressions-expected.txt	2011-06-15 15:59:04 UTC (rev 88941)
@@ -1,5 +1,4 @@
 Tests that watches pane renders errors in red.
 
-foo: 123#$%: [Exception: SyntaxError]
 SUCCESS
 

Modified: trunk/LayoutTests/inspector/debugger/error-in-watch-expressions.html (88940 => 88941)


--- trunk/LayoutTests/inspector/debugger/error-in-watch-expressions.html	2011-06-15 15:44:00 UTC (rev 88940)
+++ trunk/LayoutTests/inspector/debugger/error-in-watch-expressions.html	2011-06-15 15:59:04 UTC (rev 88941)
@@ -9,14 +9,12 @@
 {
     var watchExpressionsSection = WebInspector.panels.scripts.sidebarPanes.watchExpressions.section;
     watchExpressionsSection.addExpression();
-    watchExpressionsSection.watchExpressions[0] = "foo";
-    watchExpressionsSection.watchExpressions[1] = "#$%";
+    watchExpressionsSection.watchExpressions[0] = "#$%";
     watchExpressionsSection.update();
     InspectorTest.runAfterPendingDispatches(step1);
 
     function step1()
     {
-        InspectorTest.addResult(watchExpressionsSection.element.textContent);
         InspectorTest.addResult(watchExpressionsSection.element.innerHTML.indexOf("watch-expressions-error-level") !== -1 ? "SUCCESS" : "FAILED");
         InspectorTest.completeTest();
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to