JS warning in EdAECSSAttributes.js; b=248966; fix by gautheri@noos.fr; r=daniel@glazman.org; sr=sfraser@aol.net

git-svn-id: svn://10.0.0.236/trunk@158571 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
daniel%glazman.org
2004-06-29 08:07:26 +00:00
parent 82a9a8576a
commit 6bf8d65848

View File

@@ -62,11 +62,10 @@ function BuildCSSAttributeTable()
if (declLength > 0)
{
var added = false;
for (i = 0; i < declLength; i++)
for (var i = 0; i < declLength; ++i)
{
name = style.item(i);
value = style.getPropertyValue(name);
var name = style.item(i);
var value = style.getPropertyValue(name);
AddTreeItem( name, value, "CSSAList", CSSAttrs );
}
}