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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-linkify-message-location.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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
Index: third_party/WebKit/LayoutTests/inspector/console/console-linkify-message-location.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-linkify-message-location.html b/third_party/WebKit/LayoutTests/inspector/console/console-linkify-message-location.html
index 2aa0268e2d01602a0c9236da92a869f952844a18..525502fb5a62e879623198737ece40e511b03d19 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-linkify-message-location.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-linkify-message-location.html
@@ -26,25 +26,25 @@ function test()
{
dumpConsoleMessageURLs();
- InspectorTest.addSniffer(WebInspector.BlackboxManager.prototype, "_patternChangeFinishedForTests", step2);
+ InspectorTest.addSniffer(Bindings.BlackboxManager.prototype, "_patternChangeFinishedForTests", step2);
var frameworkRegexString = "foo\\.js";
- WebInspector.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
+ Common.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
}
function step2()
{
dumpConsoleMessageURLs();
- InspectorTest.addSniffer(WebInspector.BlackboxManager.prototype, "_patternChangeFinishedForTests", step3);
+ InspectorTest.addSniffer(Bindings.BlackboxManager.prototype, "_patternChangeFinishedForTests", step3);
var frameworkRegexString = "foo\\.js|boo\\.js";
- WebInspector.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
+ Common.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
}
function step3()
{
dumpConsoleMessageURLs();
- InspectorTest.addSniffer(WebInspector.BlackboxManager.prototype, "_patternChangeFinishedForTests", step4);
+ InspectorTest.addSniffer(Bindings.BlackboxManager.prototype, "_patternChangeFinishedForTests", step4);
var frameworkRegexString = "";
- WebInspector.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
+ Common.settingForTest("skipStackFramesPattern").set(frameworkRegexString);
}
function step4()
@@ -55,7 +55,7 @@ function test()
function dumpConsoleMessageURLs()
{
- var messages = WebInspector.ConsoleView.instance()._visibleViewMessages;
+ var messages = Console.ConsoleView.instance()._visibleViewMessages;
for (var i = 0; i < messages.length; ++i) {
var element = messages[i].toMessageElement();
var anchor = element.querySelector(".console-message-url");

Powered by Google App Engine
This is Rietveld 408576698