Implement 'width' IDL attribute on <table>

This commit is contained in:
Corey Farwell 2015-11-09 23:13:41 -05:00
parent cd6813ea39
commit 575b3c3d4b
4 changed files with 7 additions and 136 deletions

View file

@ -115,6 +115,12 @@ impl HTMLTableElementMethods for HTMLTableElement {
// https://html.spec.whatwg.org/multipage/#dom-table-bgcolor
make_setter!(SetBgColor, "bgcolor");
// https://html.spec.whatwg.org/multipage/#dom-table-width
make_getter!(Width);
// https://html.spec.whatwg.org/multipage/#dom-table-width
make_dimension_setter!(SetWidth, "width");
}
pub trait HTMLTableElementLayoutHelpers {

View file

@ -32,7 +32,7 @@ partial interface HTMLTableElement {
// attribute DOMString frame;
// attribute DOMString rules;
// attribute DOMString summary;
// attribute DOMString width;
attribute DOMString width;
[TreatNullAs=EmptyString] attribute DOMString bgColor;
//[TreatNullAs=EmptyString] attribute DOMString cellPadding;