mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 13:42:48 +00:00
added font flags
This commit is contained in:
parent
4ee7bc6970
commit
b14b73ba93
content/base/src
layout
@ -59,12 +59,12 @@ void StyleFontImpl::ResetFrom(const nsStyleFont* aParent, nsIPresContext* aPresC
|
||||
if (nsnull != aParent) {
|
||||
mFont = aParent->mFont;
|
||||
mFixedFont = aParent->mFixedFont;
|
||||
mThreeD = aParent->mThreeD;
|
||||
mFlags = aParent->mFlags;
|
||||
}
|
||||
else {
|
||||
mFont = aPresContext->GetDefaultFont();
|
||||
mFixedFont = aPresContext->GetDefaultFixedFont();
|
||||
mThreeD = PR_FALSE;
|
||||
mFlags = NS_STYLE_FONT_DEFAULT;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -132,6 +132,11 @@
|
||||
#define NS_STYLE_FONT_SIZE_LARGER 7
|
||||
#define NS_STYLE_FONT_SIZE_SMALLER 8
|
||||
|
||||
// See nsStyleFont mFlags
|
||||
#define NS_STYLE_FONT_DEFAULT 0x00
|
||||
#define NS_STYLE_FONT_SIZE_EXPLICIT 0x01
|
||||
#define NS_STYLE_FONT_FACE_EXPLICIT 0x02
|
||||
|
||||
// See nsStylePosition.mPosition
|
||||
#define NS_STYLE_POSITION_NORMAL 0
|
||||
#define NS_STYLE_POSITION_RELATIVE 1
|
||||
|
@ -59,12 +59,12 @@ void StyleFontImpl::ResetFrom(const nsStyleFont* aParent, nsIPresContext* aPresC
|
||||
if (nsnull != aParent) {
|
||||
mFont = aParent->mFont;
|
||||
mFixedFont = aParent->mFixedFont;
|
||||
mThreeD = aParent->mThreeD;
|
||||
mFlags = aParent->mFlags;
|
||||
}
|
||||
else {
|
||||
mFont = aPresContext->GetDefaultFont();
|
||||
mFixedFont = aPresContext->GetDefaultFixedFont();
|
||||
mThreeD = PR_FALSE;
|
||||
mFlags = NS_STYLE_FONT_DEFAULT;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -59,12 +59,12 @@ void StyleFontImpl::ResetFrom(const nsStyleFont* aParent, nsIPresContext* aPresC
|
||||
if (nsnull != aParent) {
|
||||
mFont = aParent->mFont;
|
||||
mFixedFont = aParent->mFixedFont;
|
||||
mThreeD = aParent->mThreeD;
|
||||
mFlags = aParent->mFlags;
|
||||
}
|
||||
else {
|
||||
mFont = aPresContext->GetDefaultFont();
|
||||
mFixedFont = aPresContext->GetDefaultFixedFont();
|
||||
mThreeD = PR_FALSE;
|
||||
mFlags = NS_STYLE_FONT_DEFAULT;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user