editableCombo.add(INHERIT_KEYWORD, 0);
}
// if the keyword type is supported then we have to add all the
// keywords to the editable combo
if (valueTypes.contains(StyleValueType.KEYWORD)) {
AllowableKeywords allowableKeywords = getAllowableKeywords();
// add the keywords to the combo. Note: keywords are not localized
// as the are part of the CSS spec.
if (allowableKeywords != null) {
List keywords = allowableKeywords.getKeywords();
for (int i = 0; i < keywords.size(); i++) {
StyleKeyword keyword = (StyleKeyword) keywords.get(i);
if (!keyword.isInternal()) {
editableCombo.add(keyword.getName());
}