Fix for bug 36939. Autocomplete widget doesn't use anymore its own tag but instead, it's now a textfield with the attribute "autocomplete" set to true.

This commit is contained in:
ducarroz%netscape.com 2000-04-25 01:21:56 +00:00
parent 17d001cafb
commit d25ee9357e

View File

@ -161,10 +161,6 @@ menubutton {
behavior: url("resource:/chrome/xulBindings.xml#menubutton");
}
autocomplete {
behavior: url("resource:/chrome/autocomplete.xml#autocomplete");
}
/******** Titled buttons **********/
/******** Tree widget **********/
@ -301,6 +297,10 @@ text[editable="true"][mode="edit"] {
behavior: url(resource:/chrome/xulBindings.xml#text-editable-edit);
}
textfield[autocomplete="true"] {
behavior: url(resource:/chrome/autocomplete.xml#autocomplete);
}
colorpicker {
behavior: url(resource:/chrome/xulBindings.xml#colorpicker);
}