Changeset 34789 in webkit
- Timestamp:
- Jun 24, 2008, 9:35:46 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r34787 r34789 1 2008-06-24 Anonymous 2 3 Reviewed by Darin Adler. Committed by Adam Barth. 4 5 https://bugs.webkit.org/show_bug.cgi?id=19470 6 7 Check for a null documentElement() to fix four crashes. 8 9 * LayoutTests/fast/dom/documentElement-null-expected.txt: Added. 10 * LayoutTests/fast/dom/documentElement-null.html: Added. 11 1 12 2008-06-24 Adam Barth <abarth@webkit.org> 2 13 -
trunk/WebCore/ChangeLog
r34787 r34789 1 2008-06-24 Anonymous 2 3 Reviewed by Darin Adler. Committed by Adam Barth. 4 5 https://bugs.webkit.org/show_bug.cgi?id=19470 6 7 Check for a null documentElement() to fix four crashes. 8 9 * WebCore/dom/Document.cpp: 10 * WebCore/dom/Node.cpp: 11 1 12 2008-06-24 Adam Barth <abarth@webkit.org> 2 13 -
trunk/WebCore/dom/Document.cpp
r34753 r34789 1454 1454 void Document::setBody(PassRefPtr<HTMLElement> newBody, ExceptionCode& ec) 1455 1455 { 1456 if (!newBody ) {1456 if (!newBody || !documentElement()) { 1457 1457 ec = HIERARCHY_REQUEST_ERR; 1458 1458 return; -
trunk/WebCore/dom/Node.cpp
r34627 r34789 1384 1384 } 1385 1385 case DOCUMENT_NODE: 1386 return static_cast <const Document *>(this)->documentElement()->isDefaultNamespace(namespaceURI); 1386 if (Element* de = static_cast<const Document*>(this)->documentElement()) 1387 return de->isDefaultNamespace(namespaceURI); 1388 return false; 1387 1389 case ENTITY_NODE: 1388 1390 case NOTATION_NODE: … … 1415 1417 return lookupNamespacePrefix(namespaceURI, static_cast<const Element *>(this)); 1416 1418 case DOCUMENT_NODE: 1417 return static_cast<const Document *>(this)->documentElement()->lookupPrefix(namespaceURI); 1419 if (Element* de = static_cast<const Document*>(this)->documentElement()) 1420 return de->lookupPrefix(namespaceURI); 1421 return String(); 1418 1422 case ENTITY_NODE: 1419 1423 case NOTATION_NODE: … … 1473 1477 } 1474 1478 case DOCUMENT_NODE: 1475 return static_cast<const Document *>(this)->documentElement()->lookupNamespaceURI(prefix); 1479 if (Element* de = static_cast<const Document*>(this)->documentElement()) 1480 return de->lookupNamespaceURI(prefix); 1481 return String(); 1476 1482 case ENTITY_NODE: 1477 1483 case NOTATION_NODE:
Note:
See TracChangeset
for help on using the changeset viewer.