| Index: third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js b/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
|
| index 1357ca27f65395f1c4d02e3a40a7eaa9a7a8afd1..303df99a7677afa1e9c568366006c11ea96b1390 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
|
| @@ -15,7 +15,7 @@ WebInspector.PropertyChangeHighlighter = function(ssp, cssModel, styleSheetId, r
|
| this._target = cssModel.target();
|
| this._styleSheetId = styleSheetId;
|
| this._range = range;
|
| -}
|
| +};
|
|
|
| WebInspector.PropertyChangeHighlighter.prototype = {
|
| /**
|
| @@ -89,7 +89,7 @@ WebInspector.PropertyChangeHighlighter.prototype = {
|
| var endsAfter = outterRange.endLine > innerRange.endLine || (outterRange.endLine === innerRange.endLine && outterRange.endColumn + eps >= innerRange.endColumn);
|
| return startsBefore && endsAfter;
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -100,7 +100,7 @@ WebInspector.PropertyRevealHighlighter = function(ssp, cssProperty)
|
| {
|
| this._styleSidebarPane = ssp;
|
| this._cssProperty = cssProperty;
|
| -}
|
| +};
|
|
|
| WebInspector.PropertyRevealHighlighter.prototype = {
|
| perform: function()
|
| @@ -135,4 +135,4 @@ WebInspector.PropertyRevealHighlighter.prototype = {
|
| { offset: 1, backgroundColor: "transparent"}
|
| ], { duration : 2000, easing: "cubic-bezier(0, 0, 0.2, 1)" });
|
| },
|
| -}
|
| +};
|
|
|