| Index: third_party/WebKit/Source/devtools/front_end/inline_editor/ColorSwatch.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/inline_editor/ColorSwatch.js b/third_party/WebKit/Source/devtools/front_end/inline_editor/ColorSwatch.js
|
| index 54ef9ef2ce194d50b7ef43c83be5a07efbccd58b..935df38041d9477665f49aa849c2676afc0c06ad 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/inline_editor/ColorSwatch.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/inline_editor/ColorSwatch.js
|
| @@ -247,7 +247,7 @@ InlineEditor.CSSShadowSwatch = class extends HTMLSpanElement {
|
| setCSSShadow(model) {
|
| this._model = model;
|
| this._contentElement.removeChildren();
|
| - var results = Common.TextUtils.splitStringByRegexes(model.asCSSText(), [/inset/g, Common.Color.Regex]);
|
| + var results = TextUtils.TextUtils.splitStringByRegexes(model.asCSSText(), [/inset/g, Common.Color.Regex]);
|
| for (var i = 0; i < results.length; i++) {
|
| var result = results[i];
|
| if (result.regexIndex === 1) {
|
|
|