зеркало из https://github.com/mozilla/pjs.git
nsDOMCSSDeclaration::GetCssText not implemented; b=79722, r=harishd, sr=jst
This commit is contained in:
Родитель
6da2fab05f
Коммит
41aa3398d9
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче