public Name getName() { return name; }
public void render(RenderContext r) {
TokenConsumer out = r.getOut();
out.consume("progid");
out.consume(":");
out.consume(name.getCanonicalForm());
out.consume("(");
boolean comma = false;
for (CssPropertySignature a : children()) {
if (comma) { out.consume(","); }