aboutsummaryrefslogtreecommitdiffstats
path: root/components/script_layout_interface/wrapper_traits.rs
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2016-11-22 13:24:06 -0800
committerMatt Brubeck <mbrubeck@limpet.net>2016-12-14 09:58:23 -0800
commite982d6003fb0e4bc0a26cb5cf488bc8c2bc117f8 (patch)
tree8fa150b0d5e7ec8c5f6167620d613451fa6b7c0a /components/script_layout_interface/wrapper_traits.rs
parentb77a0a89cf76a15346345c74e712a8d56b6ee517 (diff)
downloadservo-e982d6003fb0e4bc0a26cb5cf488bc8c2bc117f8.tar.gz
servo-e982d6003fb0e4bc0a26cb5cf488bc8c2bc117f8.zip
Add the HTMLTableCellElement::rowspan property
Diffstat (limited to 'components/script_layout_interface/wrapper_traits.rs')
-rw-r--r--components/script_layout_interface/wrapper_traits.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script_layout_interface/wrapper_traits.rs b/components/script_layout_interface/wrapper_traits.rs
index 1d1f32bf4b6..cf3e3e4c7c5 100644
--- a/components/script_layout_interface/wrapper_traits.rs
+++ b/components/script_layout_interface/wrapper_traits.rs
@@ -265,6 +265,8 @@ pub trait ThreadSafeLayoutNode: Clone + Copy + Debug + GetLayoutData + NodeInfo
fn get_colspan(&self) -> u32;
+ fn get_rowspan(&self) -> u32;
+
fn fragment_type(&self) -> FragmentType {
match self.get_pseudo_element_type() {
PseudoElementType::Normal => FragmentType::FragmentBody,