summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_para.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_para.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_para.cpp56
1 files changed, 17 insertions, 39 deletions
diff --git a/xfa/fxfa/parser/cxfa_para.cpp b/xfa/fxfa/parser/cxfa_para.cpp
index 89b040df99..3fe413bdb7 100644
--- a/xfa/fxfa/parser/cxfa_para.cpp
+++ b/xfa/fxfa/parser/cxfa_para.cpp
@@ -12,48 +12,26 @@ const CXFA_Node::PropertyData kPropertyData[] = {
{XFA_Element::Hyphenation, 1, 0},
{XFA_Element::Unknown, 0, 0}};
const CXFA_Node::AttributeData kAttributeData[] = {
- {XFA_Attribute::Id, XFA_AttributeType::CData,
- XFA_XDPPACKET_SourceSet | XFA_XDPPACKET_Template |
- XFA_XDPPACKET_ConnectionSet | XFA_XDPPACKET_Form,
- nullptr},
+ {XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::HAlign, XFA_AttributeType::Enum,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form,
(void*)XFA_ATTRIBUTEENUM_Left},
- {XFA_Attribute::TextIndent, XFA_AttributeType::Measure,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)L"0in"},
- {XFA_Attribute::Use, XFA_AttributeType::CData,
- XFA_XDPPACKET_SourceSet | XFA_XDPPACKET_Template |
- XFA_XDPPACKET_ConnectionSet | XFA_XDPPACKET_Form,
- nullptr},
- {XFA_Attribute::Widows, XFA_AttributeType::Integer,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)0},
- {XFA_Attribute::MarginRight, XFA_AttributeType::Measure,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)L"0in"},
- {XFA_Attribute::MarginLeft, XFA_AttributeType::Measure,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)L"0in"},
- {XFA_Attribute::RadixOffset, XFA_AttributeType::Measure,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)L"0in"},
- {XFA_Attribute::Preserve, XFA_AttributeType::CData,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, nullptr},
- {XFA_Attribute::SpaceBelow, XFA_AttributeType::Measure,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)L"0in"},
+ {XFA_Attribute::TextIndent, XFA_AttributeType::Measure, (void*)L"0in"},
+ {XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
+ {XFA_Attribute::Widows, XFA_AttributeType::Integer, (void*)0},
+ {XFA_Attribute::MarginRight, XFA_AttributeType::Measure, (void*)L"0in"},
+ {XFA_Attribute::MarginLeft, XFA_AttributeType::Measure, (void*)L"0in"},
+ {XFA_Attribute::RadixOffset, XFA_AttributeType::Measure, (void*)L"0in"},
+ {XFA_Attribute::Preserve, XFA_AttributeType::CData, nullptr},
+ {XFA_Attribute::SpaceBelow, XFA_AttributeType::Measure, (void*)L"0in"},
{XFA_Attribute::VAlign, XFA_AttributeType::Enum,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)XFA_ATTRIBUTEENUM_Top},
- {XFA_Attribute::TabDefault, XFA_AttributeType::CData,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, nullptr},
- {XFA_Attribute::TabStops, XFA_AttributeType::CData,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, nullptr},
- {XFA_Attribute::Orphans, XFA_AttributeType::Integer,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)0},
- {XFA_Attribute::Usehref, XFA_AttributeType::CData,
- XFA_XDPPACKET_SourceSet | XFA_XDPPACKET_Template |
- XFA_XDPPACKET_ConnectionSet | XFA_XDPPACKET_Form,
- nullptr},
- {XFA_Attribute::LineHeight, XFA_AttributeType::Measure,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)L"0pt"},
- {XFA_Attribute::SpaceAbove, XFA_AttributeType::Measure,
- XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)L"0in"},
- {XFA_Attribute::Unknown, XFA_AttributeType::Integer, 0, nullptr}};
+ (void*)XFA_ATTRIBUTEENUM_Top},
+ {XFA_Attribute::TabDefault, XFA_AttributeType::CData, nullptr},
+ {XFA_Attribute::TabStops, XFA_AttributeType::CData, nullptr},
+ {XFA_Attribute::Orphans, XFA_AttributeType::Integer, (void*)0},
+ {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
+ {XFA_Attribute::LineHeight, XFA_AttributeType::Measure, (void*)L"0pt"},
+ {XFA_Attribute::SpaceAbove, XFA_AttributeType::Measure, (void*)L"0in"},
+ {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
constexpr wchar_t kName[] = L"para";