git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix crash when text is contained inside a table-colgroup.
[WebKit-https.git]
/
WebCore
/
khtml
/
xml
/
dom_textimpl.cpp
diff --git
a/WebCore/khtml/xml/dom_textimpl.cpp
b/WebCore/khtml/xml/dom_textimpl.cpp
index
c6254e5
..
b9e5d9a
100644
(file)
--- a/
WebCore/khtml/xml/dom_textimpl.cpp
+++ b/
WebCore/khtml/xml/dom_textimpl.cpp
@@
-414,7
+414,7
@@
bool TextImpl::rendererIsNeeded(RenderStyle *style)
RenderObject *par = parentNode()->renderer();
- if (par->isTable() || par->isTableRow() || par->isTableSection()) {
+ if (par->isTable() || par->isTableRow() || par->isTableSection()
|| par->isTableCol()
) {
return false;
}