String text = "text";
SimpleAttributeSet attr = new SimpleAttributeSet();
attr.addAttribute("aaaa", "bbbb");
action = reader.new FormAction();
action.start(Tag.SELECT, attr);
ElementSpec spec = (ElementSpec)reader.parseBuffer.get(1);
final AttributeSet specAttr = spec.getAttributes();
assertEquals(3, specAttr.getAttributeCount());
assertSpec(spec, ElementSpec.ContentType, ElementSpec.OriginateDirection, 0, new char[] {' '});
Object contentModel = specAttr.getAttribute(StyleConstants.ModelAttribute);
assertNotNull(contentModel);
assertTrue(contentModel instanceof DefaultComboBoxModel);