Remove unused canHaveExplicitInherit variable and fix some comments. b=308079 r+sr=bzbarsky

This commit is contained in:
dbaron%dbaron.org 2005-09-12 04:55:36 +00:00
Родитель 2ab5df6271
Коммит d402454cc2
1 изменённых файлов: 6 добавлений и 12 удалений

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

@ -915,7 +915,6 @@ nsRuleNode::CheckSpecifiedProperties(const nsStyleStructID aSID,
specified = 0, // number that were specified for this node specified = 0, // number that were specified for this node
inherited = 0; // number that were 'inherit' (and not inherited = 0; // number that were 'inherit' (and not
// eCSSUnit_Inherit) for this node // eCSSUnit_Inherit) for this node
PRBool canHaveExplicitInherit = PR_FALSE;
for (const PropertyCheckData *prop = structData->props, for (const PropertyCheckData *prop = structData->props,
*prop_end = prop + structData->nprops; *prop_end = prop + structData->nprops;
@ -994,15 +993,10 @@ nsRuleNode::CheckSpecifiedProperties(const nsStyleStructID aSID,
} }
#if 0 #if 0
printf("CheckSpecifiedProperties: SID=%d total=%d spec=%d inh=%d chei=%s.\n", printf("CheckSpecifiedProperties: SID=%d total=%d spec=%d inh=%d.\n",
aSID, total, specified, inherited, canHaveExplicitInherit?"true":"false"); aSID, total, specified, inherited);
#endif #endif
if (canHaveExplicitInherit) {
if (specified == total)
return eRuleFullMixed;
return eRulePartialMixed;
}
if (inherited == total) if (inherited == total)
return eRuleFullInherited; return eRuleFullInherited;
if (specified == total) { if (specified == total) {
@ -3401,7 +3395,7 @@ nsRuleNode::ComputeBorderData(nsStyleStruct* aStartStruct,
parentBorder = parentContext->GetStyleBorder(); parentBorder = parentContext->GetStyleBorder();
PRBool inherited = aInherited; PRBool inherited = aInherited;
// border-size: length, enum, inherit // border-width, border-*-width: length, enum, inherit
nsStyleCoord coord; nsStyleCoord coord;
nsStyleCoord parentCoord; nsStyleCoord parentCoord;
{ // scope for compilers with broken |for| loop scoping { // scope for compilers with broken |for| loop scoping
@ -3446,7 +3440,7 @@ nsRuleNode::ComputeBorderData(nsStyleStruct* aStartStruct,
} }
} }
// border-style: enum, none, inhert // border-style, border-*-style: enum, none, inherit
const nsCSSRect& ourStyle = marginData.mBorderStyle; const nsCSSRect& ourStyle = marginData.mBorderStyle;
{ // scope for compilers with broken |for| loop scoping { // scope for compilers with broken |for| loop scoping
NS_FOR_CSS_SIDES(side) { NS_FOR_CSS_SIDES(side) {
@ -3465,7 +3459,7 @@ nsRuleNode::ComputeBorderData(nsStyleStruct* aStartStruct,
} }
} }
// border-colors: color, string, enum // -moz-border-*-colors: color, string, enum
nscolor borderColor; nscolor borderColor;
nscolor unused = NS_RGB(0,0,0); nscolor unused = NS_RGB(0,0,0);
@ -3490,7 +3484,7 @@ nsRuleNode::ComputeBorderData(nsStyleStruct* aStartStruct,
} }
} }
// border-color: color, string, enum, inherit // border-color, border-*-color: color, string, enum, inherit
const nsCSSRect& ourBorderColor = marginData.mBorderColor; const nsCSSRect& ourBorderColor = marginData.mBorderColor;
PRBool transparent; PRBool transparent;
PRBool foreground; PRBool foreground;