HTMLTableElement is missing createTBody method

Talk about code development, features, specific bugs, enhancements, patches, and similar things.
Forum rules
Please keep everything here strictly on-topic.
This board is meant for Pale Moon source code development related subjects only like code snippets, patches, specific bugs, git, the repositories, etc.

This is not for tech support! Please do not post tech support questions in the "Development" board!
Please make sure not to use this board for support questions. Please post issues with specific websites, extensions, etc. in the relevant boards for those topics.

Please keep things on-topic as this forum will be used for reference for Pale Moon development. Expect topics that aren't relevant as such to be moved or deleted.
chrillek

HTMLTableElement is missing createTBody method

Unread post by chrillek » 2014-12-08, 10:38

Hi,

HTMLTableElement does not provide the methode createTBody, while it implements createTFoot (Palemoon 25.1.0).
The following snippet illustrates the problem:

var t = document.createElement('table');
console.log('createBody: '+typeof t.createTBody + ' createFoot: ' + typeof t.createTFoot);

The typeof createTBody is undefined, typeof createTFoot is "function" as it should be in both cases.

This method is available in Firefox since 25.0, so you may be aware of it missing in Palemoon 25.1.0

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35571
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: HTMLTableElement is missing createTBody method

Unread post by Moonchild » 2014-12-08, 12:09

That one slipped through the cracks, so thanks for reporting ;)

I looked at the Mozilla implementation and it should be rather painless to add to Pale Moon, so expect this in 25.2
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

Locked