Fixing bug 288267. getAttribute("transform") giving back "" for transform="matrix(...)". r=tor@acm.org

git-svn-id: svn://10.0.0.236/trunk@171456 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jwatt%jwatt.org
2005-04-01 16:07:37 +00:00
parent b74a723586
commit 9a50b7b10d

View File

@@ -203,7 +203,8 @@ nsSVGTransform::GetValueString(nsAString& aValue)
nsTextFormatter::snprintf(buf, sizeof(buf)/sizeof(PRUnichar),
NS_LITERAL_STRING("matrix(%g, %g, %g, %g, %g, %g)").get(),
a, b, c, d, e, f);
}
}
break;
default:
buf[0] = '\0';
NS_ERROR("unknown transformation type");