Home
last modified time | relevance | path

Searched refs:userInput (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
DMetricsSidebarPane.js230 editingCommitted: function(element, userInput, previousContent, context) argument
237 if (userInput === previousContent)
240 if (context.box !== "position" && (!userInput || userInput === "\u2012"))
241 userInput = "0px";
242 else if (context.box === "position" && (!userInput || userInput === "\u2012"))
243 userInput = "auto";
245 userInput = userInput.toLowerCase();
247 if (/^\d+$/.test(userInput))
248 userInput += "px";
254 if (!userInput.match(/px$/)) {
[all …]
DObjectPropertiesSection.js280 editingCommitted: function(element, userInput, previousContent, context) argument
282 if (userInput === previousContent)
285 this.applyExpression(userInput, true);
DStylesSidebarPane.js1794 editingCommitted: function(element, userInput, previousContent, context, moveDirection) argument
1804 var abandonNewProperty = this._newProperty && !userInput && (moveToOther || isEditingName);
1812 else if (moveDirection === "forward" && (!this._newProperty || userInput))
1819 var blankInput = /^\s*$/.test(userInput);
1823 …if (((userInput !== previousContent || isDirtyViaPaste) && !this._newProperty) || shouldCommitNewP…
1831 propertyText = userInput + ": " + this.valueElement.textContent;
1833 propertyText = this.nameElement.textContent + ": " + userInput;
/external/webkit/Source/WebKit/chromium/public/
DWebPasswordAutocompleteListener.h42 const WebString& userInput) = 0;
45 const WebString& userInput,
/external/webkit/Tools/QtTestBrowser/
Dwebpage.cpp150 QLineEdit* userInput = new QLineEdit(dialog); in authenticationRequired() local
151 layout->addWidget(userInput, 1, 1); in authenticationRequired()
168 authenticator->setUser(userInput->text()); in authenticationRequired()
/external/webkit/Source/WebCore/
DChangeLog15225 …(WebInspector.StylePropertyTreeElement.prototype.element.userInput.previousContent.context.moveDir…
64498 …(WebInspector.StylePropertyTreeElement.prototype.element.userInput.previousContent.context.moveDir…