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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.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/elements/styles-1/disable-property-workingcopy-update.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html
index 609c650d0e0c82fdb583e7f83113a588110018ec..6d6e1312d2cc2344ed0ddbd30840bac9f8902006 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/disable-property-workingcopy-update.html
@@ -9,7 +9,7 @@
function test()
{
var cssSourceFrame;
- WebInspector.StylesSourceMapping.MinorChangeUpdateTimeoutMs = 10;
+ Bindings.StylesSourceMapping.MinorChangeUpdateTimeoutMs = 10;
InspectorTest.runTestSuite([
function selectContainer(next)
@@ -22,8 +22,8 @@ function test()
var headers = InspectorTest.cssModel.styleSheetHeaders();
for (var i = 0; i < headers.length; ++i) {
if (headers[i].sourceURL.endsWith(".css")) {
- var cssLocation = new WebInspector.CSSLocation(headers[i], 0);
- InspectorTest.showUISourceCode(WebInspector.cssWorkspaceBinding.rawLocationToUILocation(cssLocation).uiSourceCode, callback);
+ var cssLocation = new SDK.CSSLocation(headers[i], 0);
+ InspectorTest.showUISourceCode(Bindings.cssWorkspaceBinding.rawLocationToUILocation(cssLocation).uiSourceCode, callback);
break;
}
}
@@ -63,7 +63,7 @@ function test()
function toggleProperty(value, next)
{
- InspectorTest.addSniffer(WebInspector.UISourceCode.prototype, "addRevision", callback);
+ InspectorTest.addSniffer(Workspace.UISourceCode.prototype, "addRevision", callback);
InspectorTest.waitForStyles("inspected", callback);
InspectorTest.toggleMatchedStyleProperty("font-weight", value);

Powered by Google App Engine
This is Rietveld 408576698