From a844b080d6728d29520b86625ca58915782cec0a Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sat, 26 Sep 2015 10:07:34 -0400 Subject: Imlement 'bgcolor' IDL attrs for table elements The content attributes and presentational hints were implemented in the #4289 pull request. This just implements the relevant IDL attributes. --- components/script/dom/htmltableelement.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'components/script/dom/htmltableelement.rs') diff --git a/components/script/dom/htmltableelement.rs b/components/script/dom/htmltableelement.rs index 6a63223d09d..1308aff4a44 100644 --- a/components/script/dom/htmltableelement.rs +++ b/components/script/dom/htmltableelement.rs @@ -127,6 +127,12 @@ impl HTMLTableElementMethods for HTMLTableElement { reference_element.r()).is_ok()); tbody } + + // https://html.spec.whatwg.org/multipage/#dom-table-bgcolor + make_getter!(BgColor); + + // https://html.spec.whatwg.org/multipage/#dom-table-bgcolor + make_setter!(SetBgColor, "bgcolor"); } -- cgit v1.2.3