nsDOMCSSDeclaration::GetCssText not implemented; b=79722, r=harishd, sr=jst

This commit is contained in:
glazman%netscape.com 2001-05-15 08:25:03 +00:00
Родитель 6da2fab05f
Коммит 41aa3398d9
2 изменённых файлов: 16 добавлений и 2 удалений

Просмотреть файл

@ -67,8 +67,15 @@ NS_IMPL_RELEASE(nsDOMCSSDeclaration);
NS_IMETHODIMP
nsDOMCSSDeclaration::GetCssText(nsAWritableString& aCssText)
{
nsCOMPtr<nsICSSDeclaration> decl;
aCssText.Truncate();
// XXX TBI
GetCSSDeclaration(getter_AddRefs(decl), PR_FALSE);
NS_ASSERTION(decl, "null CSSDeclaration");
if (decl) {
decl->ToString(aCssText);
}
return NS_OK;
}

Просмотреть файл

@ -67,8 +67,15 @@ NS_IMPL_RELEASE(nsDOMCSSDeclaration);
NS_IMETHODIMP
nsDOMCSSDeclaration::GetCssText(nsAWritableString& aCssText)
{
nsCOMPtr<nsICSSDeclaration> decl;
aCssText.Truncate();
// XXX TBI
GetCSSDeclaration(getter_AddRefs(decl), PR_FALSE);
NS_ASSERTION(decl, "null CSSDeclaration");
if (decl) {
decl->ToString(aCssText);
}
return NS_OK;
}