diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-12-21 19:49:30 -0800 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-12-24 13:20:43 -0800 |
commit | ba659cb99cd07ca93736e44226bf164dd7f01088 (patch) | |
tree | d9898cccc51298e0dfd4e7321e892e992acb933d /components/script/dom/webidls/HTMLTableCellElement.webidl | |
parent | dafdc856ac3fc2bd000e61bdcaed2c024828de0c (diff) | |
download | servo-ba659cb99cd07ca93736e44226bf164dd7f01088.tar.gz servo-ba659cb99cd07ca93736e44226bf164dd7f01088.zip |
Implement non-zero dimension attribute parsing
Fixes #8445
The only attributes I found that we have implemented that uses non-zero
dimenion attributes:
* `width` for `<td>` and `<th>` (table cells)
* `width` for `<table>`
I updated these implementations to use the new non-zero dimension
attribute parsing and added associated regression tests.
Diffstat (limited to 'components/script/dom/webidls/HTMLTableCellElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableCellElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTableCellElement.webidl b/components/script/dom/webidls/HTMLTableCellElement.webidl index b259d9ff6a3..c1ee341749b 100644 --- a/components/script/dom/webidls/HTMLTableCellElement.webidl +++ b/components/script/dom/webidls/HTMLTableCellElement.webidl @@ -19,7 +19,7 @@ partial interface HTMLTableCellElement { // attribute DOMString align; // attribute DOMString axis; // attribute DOMString height; - // attribute DOMString width; + attribute DOMString width; // attribute DOMString ch; // attribute DOMString chOff; |