| Index: Source/devtools/front_end/elements/StylesSidebarPane.js
 | 
| diff --git a/Source/devtools/front_end/elements/StylesSidebarPane.js b/Source/devtools/front_end/elements/StylesSidebarPane.js
 | 
| index fc59bd7afdf624e6de940db87b36c94a0e14d1f8..e0f6ddef9fb9a0969d3a7511f69293e268d306c3 100644
 | 
| --- a/Source/devtools/front_end/elements/StylesSidebarPane.js
 | 
| +++ b/Source/devtools/front_end/elements/StylesSidebarPane.js
 | 
| @@ -3001,11 +3001,13 @@ WebInspector.StylesSidebarPane.CSSPropertyPrompt.prototype = {
 | 
|  
 | 
|      /**
 | 
|       * @param {!Element} proxyElement
 | 
| +     * @param {string} text
 | 
| +     * @param {number} cursorOffset
 | 
|       * @param {!Range} wordRange
 | 
|       * @param {boolean} force
 | 
|       * @param {function(!Array.<string>, number=)} completionsReadyCallback
 | 
|       */
 | 
| -    _buildPropertyCompletions: function(proxyElement, wordRange, force, completionsReadyCallback)
 | 
| +    _buildPropertyCompletions: function(proxyElement, text, cursorOffset, wordRange, force, completionsReadyCallback)
 | 
|      {
 | 
|          var prefix = wordRange.toString().toLowerCase();
 | 
|          if (!prefix && !force && (this._isEditingName || proxyElement.textContent.length)) {
 | 
| 
 |