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

Unified Diff: third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.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/components/css-shadow-model.html
diff --git a/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html b/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
index a1f825e6d5442fa2ef0a8499925a44dd5cfa1c98..a3b00707ff33a52ece91917d06412d109e27ad47 100644
--- a/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
+++ b/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
@@ -88,7 +88,7 @@ function test()
function dumpCSSLength(lengthText)
{
- var length = WebInspector.CSSLength.parse(lengthText);
+ var length = Common.CSSLength.parse(lengthText);
var statusText = length !== null ? "Succeeded: " + length.asCSSText() : "Failed";
InspectorTest.addResult("\"" + lengthText + "\", Parsing " + statusText);
}
@@ -105,7 +105,7 @@ function test()
function dumpShadow(shadowText, isBoxShadow)
{
- var shadows = isBoxShadow ? WebInspector.CSSShadowModel.parseBoxShadow(shadowText) : WebInspector.CSSShadowModel.parseTextShadow(shadowText);
+ var shadows = isBoxShadow ? Common.CSSShadowModel.parseBoxShadow(shadowText) : Common.CSSShadowModel.parseTextShadow(shadowText);
var output = [];
for (var i = 0; i < shadows.length; i++)
output.push(shadows[i].asCSSText());

Powered by Google App Engine
This is Rietveld 408576698