mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Don't bloat nsCSSTable for members that only need to exist in nsRuleDataTable. (Bug 636039, patch 3) r=bzbarsky
This commit is contained in:
parent
982559da8c
commit
f9e49f5a38
@ -344,16 +344,16 @@ struct nsCSSTable : public nsCSSStruct { // NEW
|
||||
nsCSSValue mBorderSpacing;
|
||||
nsCSSValue mCaptionSide;
|
||||
nsCSSValue mEmptyCells;
|
||||
|
||||
|
||||
nsCSSValue mLayout;
|
||||
nsCSSValue mSpan; // Not mappable via CSS, only using HTML4 table attrs.
|
||||
nsCSSValue mCols; // Not mappable via CSS, only using HTML4 table attrs.
|
||||
private:
|
||||
nsCSSTable(const nsCSSTable& aOther); // NOT IMPLEMENTED
|
||||
};
|
||||
|
||||
struct nsRuleDataTable : public nsCSSTable {
|
||||
nsRuleDataTable() {}
|
||||
nsCSSValue mSpan; // Not mappable via CSS, only using HTML4 table attrs.
|
||||
nsCSSValue mCols; // Not mappable via CSS, only using HTML4 table attrs.
|
||||
private:
|
||||
nsRuleDataTable(const nsRuleDataTable& aOther); // NOT IMPLEMENTED
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user