diff options
author | Matthew Rasmus <mattr@zzntd.com> | 2014-11-29 14:03:33 -0800 |
---|---|---|
committer | Matthew Rasmus <mattr@zzntd.com> | 2014-12-05 12:31:31 -0800 |
commit | ed37b53a62defe1d3d08de18166d41a20bd86912 (patch) | |
tree | 5d40de3410c141bd8281c1007988aff394f1295e /components/layout/construct.rs | |
parent | 29241699fdbdfe9308dde4f0586472919049f153 (diff) | |
download | servo-ed37b53a62defe1d3d08de18166d41a20bd86912.tar.gz servo-ed37b53a62defe1d3d08de18166d41a20bd86912.zip |
Updates WPT to expect newly passing tests
Addresses reviews
More review addressing
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index d4d52c2ebb4..21a24af7efb 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -274,8 +274,7 @@ impl<'a> FlowConstructor<'a> { TableColumnFragment(TableColumnFragmentInfo::new(node)) } Some(ElementNodeTypeId(HTMLTableDataCellElementTypeId)) | - Some(ElementNodeTypeId(HTMLTableHeaderCellElementTypeId)) | - Some(ElementNodeTypeId(HTMLTextAreaElementTypeId)) => TableCellFragment, + Some(ElementNodeTypeId(HTMLTableHeaderCellElementTypeId)) => TableCellFragment, Some(ElementNodeTypeId(HTMLTableRowElementTypeId)) | Some(ElementNodeTypeId(HTMLTableSectionElementTypeId)) => TableRowFragment, Some(TextNodeTypeId) => UnscannedTextFragment(UnscannedTextFragmentInfo::new(node)), |