[Webkit-unassigned] [Bug 111469] TD elements should be HTMLTableDataCellElement and not HTMLTableCellElement

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 5 12:59:28 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=111469


Erik Arvidsson <arv at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|TR elements should be       |TD elements should be
                   |HTMLTableDataCellElement    |HTMLTableDataCellElement
                   |and not                     |and not
                   |HTMLTableCellElement        |HTMLTableCellElement




--- Comment #2 from Erik Arvidsson <arv at chromium.org>  2013-03-05 13:01:53 PST ---
Sorry. "td"

var td = document.createElement('td');

assert(td instanceof HTMLTableDataCellElement);
assert(td.constructor === HTMLTableDataCellElement);
assert(Object.getPrototypeOf(td) === HTMLTableDataCellElement.prototype);

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list