Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: LayoutTests/http/tests/inspector-enabled/console-exception-while-no-inspector.html

Issue 881263002: DevTools: use target-based model accessors only. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/inspector-enabled/console-log-before-frame-navigation.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector-enabled/console-exception-while-no-inspector.html
diff --git a/LayoutTests/http/tests/inspector-enabled/console-exception-while-no-inspector.html b/LayoutTests/http/tests/inspector-enabled/console-exception-while-no-inspector.html
index 80f2ee3ddfc302712bb8be8e211d6f33d455fab8..5b12d54855fad4ab77c8e334cceb19b4c1860097 100644
--- a/LayoutTests/http/tests/inspector-enabled/console-exception-while-no-inspector.html
+++ b/LayoutTests/http/tests/inspector-enabled/console-exception-while-no-inspector.html
@@ -40,10 +40,10 @@ function showInspectorAndRunTest()
function test()
{
- if (WebInspector.consoleModel.messages().length !== 1)
- InspectorTest.addResult("FAIL: found too many console messages: " + WebInspector.consoleModel.messages().length);
+ if (InspectorTest.consoleModel.messages().length !== 1)
+ InspectorTest.addResult("FAIL: found too many console messages: " + InspectorTest.consoleModel.messages().length);
- var message = WebInspector.consoleModel.messages()[0];
+ var message = InspectorTest.consoleModel.messages()[0];
var stack = message.stackTrace;
if (stack)
InspectorTest.addResult("FAIL: found message with stack trace");
« no previous file with comments | « no previous file | LayoutTests/http/tests/inspector-enabled/console-log-before-frame-navigation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698