1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-04 23:35:51 +01:00

Add some docs for util.editableInputs.

This commit is contained in:
Doug Kearns
2011-01-01 03:59:13 +11:00
parent 0400b77774
commit 6529e1868c

View File

@@ -497,6 +497,10 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
util.dump((arguments.length == 0 ? "Stack" : msg) + "\n" + stack + "\n");
},
/**
* The set of input element type attribute values that mark the element as
* an editable field.
*/
editableInputs: set(["date", "datetime", "datetime-local", "email", "file",
"month", "number", "password", "range", "search",
"tel", "text", "time", "url", "week"]),