Lines Matching refs:input

3251         var input=channel.open();
3252 return FBL.readFromStream(input);
3342 this.setSelectionRange = function(input, start, length) argument
3344 if (input.createTextRange)
3346 var range = input.createTextRange();
3348 range.moveEnd("character", length - input.value.length);
3351 else if (input.setSelectionRange)
3353 input.setSelectionRange(start, length);
3354 input.focus();
3361 this.getInputSelectionStart = function(input) argument
3365 var range = input.ownerDocument.selection.createRange();
3373 return input.value.indexOf(text);
3378 range.moveStart("character", -input.value.length);
3383 else if (typeof input.selectionStart != "undefined")
3384 return input.selectionStart;
13415 // We're going to inject a fake input element with a specified name
17833 this.input = this.box.getElementsByTagName("input")[0];
17837 this.input.style.top = "-8px";
17851 return this.input.value;
17857 return this.input.value = stripNewLines(value);
17910 var parent = this.input.parentNode;
17939 this.input.style.fontFamily = "Monospace";
17940 this.input.style.fontSize = "11px";
17963 self.input.focus();
17964 self.input.select();
17985 this.input.blur();
17997 this.textSize = this.measureInputText(this.input.value);
18058 …var selectRangeCallback = this.getAutoCompleter().complete(currentPanel.context, this.input, true,…
18077 var value = this.input.value;
18081 var start = getInputSelectionStart(this.input), end = start;
18083 var start = this.input.selectionStart, end = this.input.selectionEnd;
18102 this.input.value = preExpr + completion + digitPost + postExpr;
18104 setSelectionRange(this.input, start, end);
18121 var reverted = this.getAutoCompleter().revert(this.input);
18164 if (event.propertyName != "value" || !isVisible(this.input) || !this.keyDownPressed)
18181 … selectRangeCallback = this.getAutoCompleter().complete(currentPanel.context, this.input, false);
18231 this.input.style.width = w + "px";
18232 this.input.style.height = (h-3) + "px";
18261 this.input.style.width = "100%";
18291 var xDiff = isIE ? 13: this.box.scrollWidth - this.input.offsetWidth;
18295 this.input.style.width = inputWidth + "px";
18647 insertTextIntoElement(currentEditor.input, Firebug.Editor.tabCharacter);
28589 this.input = this.box.firstChild;
28602 return this.input.value;
28607 return this.input.value = value;
28617 this.input.value = value;
28618 this.input.focus();
28657 this.startMeasuring(this.input);
28661 this.input.scrollTop = (line * lineHeight) + offset;