зеркало из https://github.com/mozilla/pjs.git
Added positionedInlineFrame atom
This commit is contained in:
Родитель
eb87693922
Коммит
e393875682
|
@ -69,6 +69,7 @@ public:
|
|||
static nsIAtom* blockFrame;
|
||||
static nsIAtom* inlineFrame;
|
||||
static nsIAtom* pageFrame;
|
||||
static nsIAtom* positionedInlineFrame;
|
||||
static nsIAtom* rootFrame;
|
||||
static nsIAtom* scrollFrame;
|
||||
static nsIAtom* tableOuterFrame;
|
||||
|
|
|
@ -55,6 +55,7 @@ nsIAtom* nsLayoutAtoms::areaFrame;
|
|||
nsIAtom* nsLayoutAtoms::blockFrame;
|
||||
nsIAtom* nsLayoutAtoms::inlineFrame;
|
||||
nsIAtom* nsLayoutAtoms::pageFrame;
|
||||
nsIAtom* nsLayoutAtoms::positionedInlineFrame;
|
||||
nsIAtom* nsLayoutAtoms::rootFrame;
|
||||
nsIAtom* nsLayoutAtoms::scrollFrame;
|
||||
nsIAtom* nsLayoutAtoms::tableOuterFrame;
|
||||
|
@ -101,6 +102,7 @@ void nsLayoutAtoms::AddrefAtoms()
|
|||
blockFrame = NS_NewAtom("BlockFrame");
|
||||
inlineFrame = NS_NewAtom("InlineFrame");
|
||||
pageFrame = NS_NewAtom("PageFrame");
|
||||
positionedInlineFrame = NS_NewAtom("PositionedInlineFrame");
|
||||
rootFrame = NS_NewAtom("RootFrame");
|
||||
scrollFrame = NS_NewAtom("ScrollFrame");
|
||||
tableOuterFrame = NS_NewAtom("TableOuterFrame");
|
||||
|
@ -149,6 +151,7 @@ void nsLayoutAtoms::ReleaseAtoms()
|
|||
NS_RELEASE(blockFrame);
|
||||
NS_RELEASE(inlineFrame);
|
||||
NS_RELEASE(pageFrame);
|
||||
NS_RELEASE(positionedInlineFrame);
|
||||
NS_RELEASE(rootFrame);
|
||||
NS_RELEASE(scrollFrame);
|
||||
NS_RELEASE(tableOuterFrame);
|
||||
|
|
|
@ -55,6 +55,7 @@ nsIAtom* nsLayoutAtoms::areaFrame;
|
|||
nsIAtom* nsLayoutAtoms::blockFrame;
|
||||
nsIAtom* nsLayoutAtoms::inlineFrame;
|
||||
nsIAtom* nsLayoutAtoms::pageFrame;
|
||||
nsIAtom* nsLayoutAtoms::positionedInlineFrame;
|
||||
nsIAtom* nsLayoutAtoms::rootFrame;
|
||||
nsIAtom* nsLayoutAtoms::scrollFrame;
|
||||
nsIAtom* nsLayoutAtoms::tableOuterFrame;
|
||||
|
@ -101,6 +102,7 @@ void nsLayoutAtoms::AddrefAtoms()
|
|||
blockFrame = NS_NewAtom("BlockFrame");
|
||||
inlineFrame = NS_NewAtom("InlineFrame");
|
||||
pageFrame = NS_NewAtom("PageFrame");
|
||||
positionedInlineFrame = NS_NewAtom("PositionedInlineFrame");
|
||||
rootFrame = NS_NewAtom("RootFrame");
|
||||
scrollFrame = NS_NewAtom("ScrollFrame");
|
||||
tableOuterFrame = NS_NewAtom("TableOuterFrame");
|
||||
|
@ -149,6 +151,7 @@ void nsLayoutAtoms::ReleaseAtoms()
|
|||
NS_RELEASE(blockFrame);
|
||||
NS_RELEASE(inlineFrame);
|
||||
NS_RELEASE(pageFrame);
|
||||
NS_RELEASE(positionedInlineFrame);
|
||||
NS_RELEASE(rootFrame);
|
||||
NS_RELEASE(scrollFrame);
|
||||
NS_RELEASE(tableOuterFrame);
|
||||
|
|
|
@ -69,6 +69,7 @@ public:
|
|||
static nsIAtom* blockFrame;
|
||||
static nsIAtom* inlineFrame;
|
||||
static nsIAtom* pageFrame;
|
||||
static nsIAtom* positionedInlineFrame;
|
||||
static nsIAtom* rootFrame;
|
||||
static nsIAtom* scrollFrame;
|
||||
static nsIAtom* tableOuterFrame;
|
||||
|
|
|
@ -69,6 +69,7 @@ public:
|
|||
static nsIAtom* blockFrame;
|
||||
static nsIAtom* inlineFrame;
|
||||
static nsIAtom* pageFrame;
|
||||
static nsIAtom* positionedInlineFrame;
|
||||
static nsIAtom* rootFrame;
|
||||
static nsIAtom* scrollFrame;
|
||||
static nsIAtom* tableOuterFrame;
|
||||
|
|
|
@ -55,6 +55,7 @@ nsIAtom* nsLayoutAtoms::areaFrame;
|
|||
nsIAtom* nsLayoutAtoms::blockFrame;
|
||||
nsIAtom* nsLayoutAtoms::inlineFrame;
|
||||
nsIAtom* nsLayoutAtoms::pageFrame;
|
||||
nsIAtom* nsLayoutAtoms::positionedInlineFrame;
|
||||
nsIAtom* nsLayoutAtoms::rootFrame;
|
||||
nsIAtom* nsLayoutAtoms::scrollFrame;
|
||||
nsIAtom* nsLayoutAtoms::tableOuterFrame;
|
||||
|
@ -101,6 +102,7 @@ void nsLayoutAtoms::AddrefAtoms()
|
|||
blockFrame = NS_NewAtom("BlockFrame");
|
||||
inlineFrame = NS_NewAtom("InlineFrame");
|
||||
pageFrame = NS_NewAtom("PageFrame");
|
||||
positionedInlineFrame = NS_NewAtom("PositionedInlineFrame");
|
||||
rootFrame = NS_NewAtom("RootFrame");
|
||||
scrollFrame = NS_NewAtom("ScrollFrame");
|
||||
tableOuterFrame = NS_NewAtom("TableOuterFrame");
|
||||
|
@ -149,6 +151,7 @@ void nsLayoutAtoms::ReleaseAtoms()
|
|||
NS_RELEASE(blockFrame);
|
||||
NS_RELEASE(inlineFrame);
|
||||
NS_RELEASE(pageFrame);
|
||||
NS_RELEASE(positionedInlineFrame);
|
||||
NS_RELEASE(rootFrame);
|
||||
NS_RELEASE(scrollFrame);
|
||||
NS_RELEASE(tableOuterFrame);
|
||||
|
|
Загрузка…
Ссылка в новой задаче