Home | History | Annotate | Download | only in front_end

Lines Matching refs:selectedText

346         var foregroundColorRule = foregroundColor ? ".CodeMirror .CodeMirror-selectedtext:not(.CodeMirror-persist-highlight) { color: " + foregroundColor + "!important;}" : "";
1267 var selectedText = this._codeMirror.getSelection();
1268 if (this._isWord(selectedText, selectionStart.line, selectionStart.ch, selectionEnd.ch)) {
1271 this._setHighlighter(this._tokenHighlighter.bind(this, selectedText, selectionStart), selectionStart);
1276 * @param {string} selectedText
1281 _isWord: function(selectedText, lineNumber, startColumn, endColumn)
1286 return leftBound && rightBound && WebInspector.TextUtils.isWord(selectedText);