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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-1/color-aware-property-value-edit.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/color-aware-property-value-edit.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/color-aware-property-value-edit.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/color-aware-property-value-edit.html
index 1aa41277dc8f806dfa6e3fa49e443414afe39e82..3aa841261f1974b12139af0b7c7692f1abc1f658 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/color-aware-property-value-edit.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/color-aware-property-value-edit.html
@@ -14,22 +14,22 @@ function test()
function editKeywordAsOriginal(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.Original, "border", next);
+ startEditingAndDumpValue(Common.Color.Format.Original, "border", next);
},
function editKeywordAsHex(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.HEX, "border", next);
+ startEditingAndDumpValue(Common.Color.Format.HEX, "border", next);
},
function editKeywordAsHSL(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.HSL, "border", next);
+ startEditingAndDumpValue(Common.Color.Format.HSL, "border", next);
},
function editKeywordAsRGB(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.RGB, "border", onValueDumped);
+ startEditingAndDumpValue(Common.Color.Format.RGB, "border", onValueDumped);
function onValueDumped()
{
InspectorTest.selectNodeAndWaitForStyles("inspected2", next);
@@ -38,22 +38,22 @@ function test()
function editHexAsOriginal(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.Original, "color", next);
+ startEditingAndDumpValue(Common.Color.Format.Original, "color", next);
},
function editHexAsHex(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.HEX, "color", next);
+ startEditingAndDumpValue(Common.Color.Format.HEX, "color", next);
},
function editHexAsHSL(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.HSL, "color", next);
+ startEditingAndDumpValue(Common.Color.Format.HSL, "color", next);
},
function editHexAsRGB(next)
{
- startEditingAndDumpValue(WebInspector.Color.Format.RGB, "color", next);
+ startEditingAndDumpValue(Common.Color.Format.RGB, "color", next);
},
function editNewProperty(next)
@@ -80,8 +80,8 @@ function test()
function setFormat(newFormat, callback)
{
- WebInspector.settingForTest("colorFormat").set(newFormat);
- WebInspector.panels.elements._stylesWidget.doUpdate().then(callback);
+ Common.settingForTest("colorFormat").set(newFormat);
+ UI.panels.elements._stylesWidget.doUpdate().then(callback);
}
function startEditingAndDumpValue(format, propertyName, next)

Powered by Google App Engine
This is Rietveld 408576698