From fb5324f8180b089c75f12d165869909db941878f Mon Sep 17 00:00:00 2001 From: Saulo Araujo Date: Sat, 16 Jul 2016 14:06:00 -0300 Subject: Fix for "normalizeTable" nesting thead and tfoot in tbody --- lib/js/urweb.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lib/js') diff --git a/lib/js/urweb.js b/lib/js/urweb.js index 1f44a97b..68e7979d 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -879,10 +879,12 @@ function normalizeTable(table) { for (script = table.firstChild; script && script != tbody; script = next) { next = script.nextSibling; - if (firstChild) - tbody.insertBefore(script, firstChild); - else - tbody.appendChild(script); + if (script.tagName === "SCRIPT") { + if (firstChild) + tbody.insertBefore(script, firstChild); + else + tbody.appendChild(script); + } } return; -- cgit v1.2.3