[Webkit-unassigned] [Bug 111469] New: TR elements should be HTMLTableDataCellElement and not HTMLTableCellElement

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 5 12:52:27 PST 2013


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

           Summary: TR elements should be HTMLTableDataCellElement and not
                    HTMLTableCellElement
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
               URL: http://www.whatwg.org/specs/web-apps/current-work/mult
                    ipage/tabular-data.html#the-td-element
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: arv at chromium.org


tr elements have the wrong prototype/constructor


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

assert(tr instanceof HTMLTableDataCellElement);
assert(tr.constructor === HTMLTableDataCellElement);
assert(Object.getPrototypeOf(tr) === 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