Fix for <rdar://problem/5208440> (13753)
REGRESSION: Raw text needs to be pulled outside of tables
Reviewed by aroben
* html/HTMLParser.cpp:
(WebCore::HTMLParser::handleError):
* html/HTMLTableColElement.cpp:
(WebCore::HTMLTableColElement::checkDTD):
* html/HTMLTableElement.cpp:
(WebCore::HTMLTableElement::checkDTD):
* html/HTMLTableRowElement.cpp:
(WebCore::HTMLTableRowElement::checkDTD):
* html/HTMLTableSectionElement.cpp:
(WebCore::HTMLTableSectionElement::checkDTD):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@21720 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/html/HTMLTableElement.cpp b/WebCore/html/HTMLTableElement.cpp
index 00d6a31..8c67bba 100644
--- a/WebCore/html/HTMLTableElement.cpp
+++ b/WebCore/html/HTMLTableElement.cpp
@@ -37,6 +37,7 @@
#include "HTMLTableCaptionElement.h"
#include "HTMLTableSectionElement.h"
#include "RenderTable.h"
+#include "Text.h"
namespace WebCore {
@@ -64,7 +65,9 @@
bool HTMLTableElement::checkDTD(const Node* newChild)
{
- return newChild->isTextNode() || newChild->hasTagName(captionTag) ||
+ if (newChild->isTextNode())
+ return static_cast<const Text*>(newChild)->containsOnlyWhitespace();
+ return newChild->hasTagName(captionTag) ||
newChild->hasTagName(colTag) || newChild->hasTagName(colgroupTag) ||
newChild->hasTagName(theadTag) || newChild->hasTagName(tfootTag) ||
newChild->hasTagName(tbodyTag) || newChild->hasTagName(formTag) ||