Lines Matching full:input

2760         "input" ],
3251 var input=channel.open();
3252 return FBL.readFromStream(input);
3340 // Input Caret Position
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();
3359 // Input Selection Start / Caret Position
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;
3606 tagName: "input"
4918 "-moz-user-input": ["userInput"],
5619 "input": 1, property in selfClosingTags
9070 … if (isIE && " meta title input script link a ".indexOf(" "+el.nodeName.toLowerCase()+" ") != -1)
13168 input: function(elem){
13169 return /input|select|textarea|button/i.test(elem.nodeName);
13415 // We're going to inject a fake input element with a specified name
15319 "img", "input", "label", "legend", "li", "ol", "optgroup", "option", "p", "pre", "select",
17757 // input event, which should happen after the onkeydown event is fired and after the
17758 // value of the input is updated, but before the onkeyup and before the input (with the
17789 INPUT(
17800 INPUT({"class": "textEditorInner", type: "text",
17832 … //this.input = this.box.childNodes[1].firstChild.firstChild; // XXXjjb childNode[1] required
17833 this.input = this.box.getElementsByTagName("input")[0];
17837 this.input.style.top = "-8px";
17846 // XXXjoe Need to remove input/keypress handlers to avoid leaks
17851 return this.input.value;
17857 return this.input.value = stripNewLines(value);
17910 var parent = this.input.parentNode;
17934 //this.input.select(); // it's called bellow, with setTimeout
17938 // reset input style
17939 this.input.style.fontFamily = "Monospace";
17940 this.input.style.fontSize = "11px";
17959 // we need to call input.focus() and input.select() with a timeout,
17963 self.input.focus();
17964 self.input.select();
17984 ///setSelectionRange(this.input, 0, 0);
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);
18137 // If the user backspaces, don't autocomplete after the upcoming input event
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%";
18266 // Make the input one character wider than the text value so that
18291 var xDiff = isIE ? 13: this.box.scrollWidth - this.input.offsetWidth;
18295 this.input.style.width = inputWidth + "px";
18534 // input will be resized to fit the whole text)
18546 // input will be resized to fit the whole text)
18647 insertTextIntoElement(currentEditor.input, Firebug.Editor.tabCharacter);
24740 var input = FBL.Firebug.chrome.document.getElementById('treeInput');
24742 input.style.display = "block";
24743 input.style.left = targ.offsetLeft + 'px';
24744 input.style.top = FBL.topHeight + targ.offsetTop - FBL.fbPanel1.scrollTop + 'px';
24745 input.style.width = targ.offsetWidth + 6 + 'px';
24746 input.value = targ.textContent || targ.innerText;
24747 input.focus();
26637 "user-input"
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;
31166 …pan="2"><div id="fbCommandBox"><div id="fbCommandIcon">&gt;&gt;&gt;</div><input id="fbCommandLine"…