1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
* Copyright (C) 2007 Trolltech ASA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "Node.h"
#include "CSSParser.h"
#include "CSSRule.h"
#include "CSSRuleList.h"
#include "CSSSelector.h"
#include "CSSStyleRule.h"
#include "CSSStyleSelector.h"
#include "CSSStyleSheet.h"
#include "CString.h"
#include "ChildNodeList.h"
#include "ClassNodeList.h"
#include "DOMImplementation.h"
#include "Document.h"
#include "DynamicNodeList.h"
#include "Element.h"
#include "ExceptionCode.h"
#include "Frame.h"
#include "HTMLNames.h"
#include "Logging.h"
#include "NameNodeList.h"
#include "NamedAttrMap.h"
#include "ProcessingInstruction.h"
#include "RenderObject.h"
#include "SelectorNodeList.h"
#include "StringBuilder.h"
#include "TagNodeList.h"
#include "Text.h"
#include "XMLNames.h"
#include "htmlediting.h"
#include "JSDOMBinding.h"
namespace WebCore {
using namespace HTMLNames;
struct NodeListsNodeData {
typedef HashSet<DynamicNodeList*> NodeListSet;
NodeListSet m_listsWithCaches;
DynamicNodeList::Caches m_childNodeListCaches;
typedef HashMap<String, DynamicNodeList::Caches*> CacheMap;
CacheMap m_classNodeListCaches;
CacheMap m_nameNodeListCaches;
~NodeListsNodeData()
{
deleteAllValues(m_classNodeListCaches);
deleteAllValues(m_nameNodeListCaches);
}
void invalidateCaches();
void invalidateCachesThatDependOnAttributes();
bool isEmpty() const;
};
// --------
bool Node::isSupported(const String& feature, const String& version)
{
return DOMImplementation::hasFeature(feature, version);
}
#ifndef NDEBUG
WTFLogChannel LogWebCoreNodeLeaks = { 0x00000000, "", WTFLogChannelOn };
struct NodeCounter {
static unsigned count;
~NodeCounter()
{
if (count)
LOG(WebCoreNodeLeaks, "LEAK: %u Node\n", count);
}
};
unsigned NodeCounter::count = 0;
static NodeCounter nodeCounter;
static bool shouldIgnoreLeaks = false;
static HashSet<Node*> ignoreSet;
#endif
void Node::startIgnoringLeaks()
{
#ifndef NDEBUG
shouldIgnoreLeaks = true;
#endif
}
void Node::stopIgnoringLeaks()
{
#ifndef NDEBUG
shouldIgnoreLeaks = false;
#endif
}
Node::Node(Document *doc)
: m_document(doc),
m_previous(0),
m_next(0),
m_renderer(0),
m_tabIndex(0),
m_hasId(false),
m_hasClass(false),
m_attached(false),
m_styleChange(NoStyleChange),
m_hasChangedChild(false),
m_inDocument(false),
m_isLink(false),
m_attrWasSpecifiedOrElementHasRareData(false),
m_focused(false),
m_active(false),
m_hovered(false),
m_inActiveChain(false),
m_inDetach(false),
m_inSubtreeMark(false),
m_tabIndexSetExplicitly(false)
{
#ifndef NDEBUG
if (shouldIgnoreLeaks)
ignoreSet.add(this);
else
++NodeCounter::count;
#endif
}
void Node::setDocument(Document* doc)
{
if (inDocument() || m_document == doc)
return;
willMoveToNewOwnerDocument();
{
KJS::JSLock lock;
ScriptInterpreter::updateDOMNodeDocument(this, m_document.get(), doc);
}
m_document = doc;
didMoveToNewOwnerDocument();
}
Node::~Node()
{
#ifndef NDEBUG
HashSet<Node*>::iterator it = ignoreSet.find(this);
if (it != ignoreSet.end())
ignoreSet.remove(it);
else
--NodeCounter::count;
#endif
if (m_nodeLists && m_document)
document()->removeNodeListCache();
if (renderer())
detach();
if (m_previous)
m_previous->setNextSibling(0);
if (m_next)
m_next->setPreviousSibling(0);
}
String Node::nodeValue() const
{
return String();
}
void Node::setNodeValue(const String& /*nodeValue*/, ExceptionCode& ec)
{
// NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly
if (isReadOnlyNode()) {
ec = NO_MODIFICATION_ALLOWED_ERR;
return;
}
// By default, setting nodeValue has no effect.
}
PassRefPtr<NodeList> Node::childNodes()
{
if (!m_nodeLists) {
m_nodeLists.set(new NodeListsNodeData);
document()->addNodeListCache();
}
return ChildNodeList::create(this, &m_nodeLists->m_childNodeListCaches);
}
Node* Node::virtualFirstChild() const
{
return 0;
}
Node* Node::virtualLastChild() const
{
return 0;
}
bool Node::virtualHasTagName(const QualifiedName&) const
{
return false;
}
Node *Node::lastDescendant() const
{
Node *n = const_cast<Node *>(this);
while (n && n->lastChild())
n = n->lastChild();
return n;
}
Node* Node::firstDescendant() const
{
Node *n = const_cast<Node *>(this);
while (n && n->firstChild())
n = n->firstChild();
return n;
}
bool Node::insertBefore(PassRefPtr<Node>, Node*, ExceptionCode& ec, bool)
{
ec = HIERARCHY_REQUEST_ERR;
return false;
}
bool Node::replaceChild(PassRefPtr<Node>, Node*, ExceptionCode& ec, bool)
{
ec = HIERARCHY_REQUEST_ERR;
return false;
}
bool Node::removeChild(Node*, ExceptionCode& ec)
{
ec = NOT_FOUND_ERR;
return false;
}
bool Node::appendChild(PassRefPtr<Node>, ExceptionCode& ec, bool)
{
ec = HIERARCHY_REQUEST_ERR;
return false;
}
void Node::remove(ExceptionCode& ec)
{
ref();
if (Node *p = parentNode())
p->removeChild(this, ec);
else
ec = HIERARCHY_REQUEST_ERR;
deref();
}
void Node::normalize()
{
// Go through the subtree beneath us, normalizing all nodes. This means that
// any two adjacent text nodes are merged together.
RefPtr<Node> node = this;
while (Node* firstChild = node->firstChild())
node = firstChild;
for (; node; node = node->traverseNextNodePostOrder()) {
NodeType type = node->nodeType();
if (type == ELEMENT_NODE)
static_cast<Element*>(node.get())->normalizeAttributes();
Node* firstChild = node->firstChild();
if (firstChild && !firstChild->nextSibling() && firstChild->isTextNode()) {
Text* text = static_cast<Text*>(firstChild);
if (!text->length()) {
ExceptionCode ec;
text->remove(ec);
}
}
if (node == this)
break;
if (type == TEXT_NODE) {
while (1) {
Node* nextSibling = node->nextSibling();
if (!nextSibling || !nextSibling->isTextNode())
break;
// Current child and the next one are both text nodes. Merge them.
Text* text = static_cast<Text*>(node.get());
RefPtr<Text> nextText = static_cast<Text*>(nextSibling);
unsigned offset = text->length();
ExceptionCode ec;
text->appendData(nextText->data(), ec);
document()->textNodesMerged(nextText.get(), offset);
nextText->remove(ec);
}
}
}
}
const AtomicString& Node::prefix() const
{
// For nodes other than elements and attributes, the prefix is always null
return nullAtom;
}
void Node::setPrefix(const AtomicString& /*prefix*/, ExceptionCode& ec)
{
// The spec says that for nodes other than elements and attributes, prefix is always null.
// It does not say what to do when the user tries to set the prefix on another type of
// node, however Mozilla throws a NAMESPACE_ERR exception.
ec = NAMESPACE_ERR;
}
const AtomicString& Node::localName() const
{
return nullAtom;
}
const AtomicString& Node::namespaceURI() const
{
return nullAtom;
}
ContainerNode* Node::addChild(PassRefPtr<Node>)
{
return 0;
}
bool Node::isContentEditable() const
{
return parent() && parent()->isContentEditable();
}
bool Node::isContentRichlyEditable() const
{
return parent() && parent()->isContentRichlyEditable();
}
bool Node::shouldUseInputMethod() const
{
return isContentEditable();
}
IntRect Node::getRect() const
{
int _x, _y;
if (renderer() && renderer()->absolutePosition(_x, _y))
return IntRect( _x, _y, renderer()->width(), renderer()->height() + renderer()->borderTopExtra() + renderer()->borderBottomExtra());
return IntRect();
}
void Node::setChanged(StyleChangeType changeType)
{
if ((changeType != NoStyleChange) && !attached()) // changed compared to what?
return;
if (!(changeType == InlineStyleChange && m_styleChange == FullStyleChange))
m_styleChange = changeType;
if (m_styleChange != NoStyleChange) {
for (Node* p = parentNode(); p && !p->hasChangedChild(); p = p->parentNode())
p->setHasChangedChild(true);
document()->setDocumentChanged(true);
}
}
static Node* outermostLazyAttachedAncestor(Node* start)
{
Node* p = start;
for (Node* next = p->parentNode(); !next->renderer(); p = next, next = next->parentNode()) {}
return p;
}
void Node::lazyAttach()
{
bool mustDoFullAttach = false;
for (Node* n = this; n; n = n->traverseNextNode(this)) {
if (!n->canLazyAttach()) {
mustDoFullAttach = true;
break;
}
if (n->firstChild())
n->setHasChangedChild(true);
n->m_styleChange = FullStyleChange;
n->m_attached = true;
}
if (mustDoFullAttach) {
Node* lazyAttachedAncestor = outermostLazyAttachedAncestor(this);
if (lazyAttachedAncestor->attached())
lazyAttachedAncestor->detach();
lazyAttachedAncestor->attach();
} else {
for (Node* p = parentNode(); p && !p->hasChangedChild(); p = p->parentNode())
p->setHasChangedChild(true);
document()->setDocumentChanged(true);
}
}
bool Node::canLazyAttach()
{
return shadowAncestorNode() == this;
}
bool Node::isFocusable() const
{
return m_tabIndexSetExplicitly;
}
bool Node::isKeyboardFocusable(KeyboardEvent*) const
{
return isFocusable() && m_tabIndex >= 0;
}
bool Node::isMouseFocusable() const
{
return isFocusable();
}
unsigned Node::nodeIndex() const
{
Node *_tempNode = previousSibling();
unsigned count=0;
for( count=0; _tempNode; count++ )
_tempNode = _tempNode->previousSibling();
return count;
}
void Node::registerDynamicNodeList(DynamicNodeList* list)
{
if (!m_nodeLists) {
m_nodeLists.set(new NodeListsNodeData);
document()->addNodeListCache();
} else if (!m_document->hasNodeListCaches()) {
// We haven't been receiving notifications while there were no registered lists, so the cache is invalid now.
m_nodeLists->invalidateCaches();
}
if (list->hasOwnCaches())
m_nodeLists->m_listsWithCaches.add(list);
}
void Node::unregisterDynamicNodeList(DynamicNodeList* list)
{
ASSERT(m_nodeLists);
if (list->hasOwnCaches()) {
m_nodeLists->m_listsWithCaches.remove(list);
if (m_nodeLists->isEmpty()) {
m_nodeLists.clear();
document()->removeNodeListCache();
}
}
}
void Node::notifyLocalNodeListsAttributeChanged()
{
if (!m_nodeLists)
return;
m_nodeLists->invalidateCachesThatDependOnAttributes();
if (m_nodeLists->isEmpty()) {
m_nodeLists.clear();
document()->removeNodeListCache();
}
}
void Node::notifyNodeListsAttributeChanged()
{
for (Node *n = this; n; n = n->parentNode())
n->notifyLocalNodeListsAttributeChanged();
}
void Node::notifyLocalNodeListsChildrenChanged()
{
if (!m_nodeLists)
return;
m_nodeLists->invalidateCaches();
NodeListsNodeData::NodeListSet::iterator end = m_nodeLists->m_listsWithCaches.end();
for (NodeListsNodeData::NodeListSet::iterator i = m_nodeLists->m_listsWithCaches.begin(); i != end; ++i)
(*i)->invalidateCache();
if (m_nodeLists->isEmpty()) {
m_nodeLists.clear();
document()->removeNodeListCache();
}
}
void Node::notifyNodeListsChildrenChanged()
{
for (Node* n = this; n; n = n->parentNode())
n->notifyLocalNodeListsChildrenChanged();
}
unsigned Node::childNodeCount() const
{
return 0;
}
Node *Node::childNode(unsigned /*index*/) const
{
return 0;
}
Node *Node::traverseNextNode(const Node *stayWithin) const
{
if (firstChild())
return firstChild();
if (this == stayWithin)
return 0;
if (nextSibling())
return nextSibling();
const Node *n = this;
while (n && !n->nextSibling() && (!stayWithin || n->parentNode() != stayWithin))
n = n->parentNode();
if (n)
return n->nextSibling();
return 0;
}
Node *Node::traverseNextSibling(const Node *stayWithin) const
{
if (this == stayWithin)
return 0;
if (nextSibling())
return nextSibling();
const Node *n = this;
while (n && !n->nextSibling() && (!stayWithin || n->parentNode() != stayWithin))
n = n->parentNode();
if (n)
return n->nextSibling();
return 0;
}
Node* Node::traverseNextNodePostOrder() const
{
Node* next = nextSibling();
if (!next)
return parentNode();
while (Node* firstChild = next->firstChild())
next = firstChild;
return next;
}
Node *Node::traversePreviousNode(const Node *stayWithin) const
{
if (this == stayWithin)
return 0;
if (previousSibling()) {
Node *n = previousSibling();
while (n->lastChild())
n = n->lastChild();
return n;
}
return parentNode();
}
Node *Node::traversePreviousNodePostOrder(const Node *stayWithin) const
{
if (lastChild())
return lastChild();
if (this == stayWithin)
return 0;
if (previousSibling())
return previousSibling();
const Node *n = this;
while (n && !n->previousSibling() && (!stayWithin || n->parentNode() != stayWithin))
n = n->parentNode();
if (n)
return n->previousSibling();
return 0;
}
Node* Node::traversePreviousSiblingPostOrder(const Node* stayWithin) const
{
if (this == stayWithin)
return 0;
if (previousSibling())
return previousSibling();
const Node *n = this;
while (n && !n->previousSibling() && (!stayWithin || n->parentNode() != stayWithin))
n = n->parentNode();
if (n)
return n->previousSibling();
return 0;
}
void Node::checkSetPrefix(const AtomicString &_prefix, ExceptionCode& ec)
{
// Perform error checking as required by spec for setting Node.prefix. Used by
// Element::setPrefix() and Attr::setPrefix()
// FIXME: Implement support for INVALID_CHARACTER_ERR: Raised if the specified prefix contains an illegal character.
// NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
if (isReadOnlyNode()) {
ec = NO_MODIFICATION_ALLOWED_ERR;
return;
}
// FIXME: Implement NAMESPACE_ERR: - Raised if the specified prefix is malformed
// We have to comment this out, since it's used for attributes and tag names, and we've only
// switched one over.
/*
// - if the namespaceURI of this node is null,
// - if the specified prefix is "xml" and the namespaceURI of this node is different from
// "http://www.w3.org/XML/1998/namespace",
// - if this node is an attribute and the specified prefix is "xmlns" and
// the namespaceURI of this node is different from "http://www.w3.org/2000/xmlns/",
// - or if this node is an attribute and the qualifiedName of this node is "xmlns" [Namespaces].
if ((namespacePart(id()) == noNamespace && id() > ID_LAST_TAG) ||
(_prefix == "xml" && String(document()->namespaceURI(id())) != "http://www.w3.org/XML/1998/namespace")) {
ec = NAMESPACE_ERR;
return;
}*/
}
bool Node::canReplaceChild(Node* newChild, Node* oldChild)
{
if (newChild->nodeType() != DOCUMENT_FRAGMENT_NODE) {
if (!childTypeAllowed(newChild->nodeType()))
return false;
}
else {
for (Node *n = newChild->firstChild(); n; n = n->nextSibling()) {
if (!childTypeAllowed(n->nodeType()))
return false;
}
}
return true;
}
void Node::checkReplaceChild(Node* newChild, Node* oldChild, ExceptionCode& ec)
{
// Perform error checking as required by spec for adding a new child. Used by
// appendChild(), replaceChild() and insertBefore()
// Not mentioned in spec: throw NOT_FOUND_ERR if newChild is null
if (!newChild) {
ec = NOT_FOUND_ERR;
return;
}
// NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly
if (isReadOnlyNode()) {
ec = NO_MODIFICATION_ALLOWED_ERR;
return;
}
bool shouldAdoptChild = false;
// WRONG_DOCUMENT_ERR: Raised if newChild was created from a different document than the one that
// created this node.
// We assume that if newChild is a DocumentFragment, all children are created from the same document
// as the fragment itself (otherwise they could not have been added as children)
if (newChild->document() != document()) {
// but if the child is not in a document yet then loosen the
// restriction, so that e.g. creating an element with the Option()
// constructor and then adding it to a different document works,
// as it does in Mozilla and Mac IE.
if (!newChild->inDocument()) {
shouldAdoptChild = true;
} else {
ec = WRONG_DOCUMENT_ERR;
return;
}
}
// HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not allow children of the type of the
// newChild node, or if the node to append is one of this node's ancestors.
// check for ancestor/same node
if (newChild == this || isDescendantOf(newChild)) {
ec = HIERARCHY_REQUEST_ERR;
return;
}
if (!canReplaceChild(newChild, oldChild)) {
ec = HIERARCHY_REQUEST_ERR;
return;
}
// change the document pointer of newChild and all of its children to be the new document
if (shouldAdoptChild)
for (Node* node = newChild; node; node = node->traverseNextNode(newChild))
node->setDocument(document());
}
void Node::checkAddChild(Node *newChild, ExceptionCode& ec)
{
// Perform error checking as required by spec for adding a new child. Used by
// appendChild(), replaceChild() and insertBefore()
// Not mentioned in spec: throw NOT_FOUND_ERR if newChild is null
if (!newChild) {
ec = NOT_FOUND_ERR;
return;
}
// NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly
if (isReadOnlyNode()) {
ec = NO_MODIFICATION_ALLOWED_ERR;
return;
}
bool shouldAdoptChild = false;
// WRONG_DOCUMENT_ERR: Raised if newChild was created from a different document than the one that
// created this node.
// We assume that if newChild is a DocumentFragment, all children are created from the same document
// as the fragment itself (otherwise they could not have been added as children)
if (newChild->document() != document()) {
// but if the child is not in a document yet then loosen the
// restriction, so that e.g. creating an element with the Option()
// constructor and then adding it to a different document works,
// as it does in Mozilla and Mac IE.
if (!newChild->inDocument()) {
shouldAdoptChild = true;
} else {
ec = WRONG_DOCUMENT_ERR;
return;
}
}
// HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not allow children of the type of the
// newChild node, or if the node to append is one of this node's ancestors.
// check for ancestor/same node
if (newChild == this || isDescendantOf(newChild)) {
ec = HIERARCHY_REQUEST_ERR;
return;
}
if (newChild->nodeType() != DOCUMENT_FRAGMENT_NODE) {
if (!childTypeAllowed(newChild->nodeType())) {
ec = HIERARCHY_REQUEST_ERR;
return;
}
}
else {
for (Node *n = newChild->firstChild(); n; n = n->nextSibling()) {
if (!childTypeAllowed(n->nodeType())) {
ec = HIERARCHY_REQUEST_ERR;
return;
}
}
}
// change the document pointer of newChild and all of its children to be the new document
if (shouldAdoptChild)
for (Node* node = newChild; node; node = node->traverseNextNode(newChild))
node->setDocument(document());
}
bool Node::isDescendantOf(const Node *other) const
{
// Return true if other is an ancestor of this, otherwise false
if (!other)
return false;
for (const Node *n = parentNode(); n; n = n->parentNode()) {
if (n == other)
return true;
}
return false;
}
bool Node::childAllowed(Node* newChild)
{
return childTypeAllowed(newChild->nodeType());
}
Node::StyleChange Node::diff( RenderStyle *s1, RenderStyle *s2 ) const
{
// FIXME: The behavior of this function is just totally wrong. It doesn't handle
// explicit inheritance of non-inherited properties and so you end up not re-resolving
// style in cases where you need to.
StyleChange ch = NoInherit;
EDisplay display1 = s1 ? s1->display() : NONE;
bool fl1 = s1 && s1->hasPseudoStyle(RenderStyle::FIRST_LETTER);
EDisplay display2 = s2 ? s2->display() : NONE;
bool fl2 = s2 && s2->hasPseudoStyle(RenderStyle::FIRST_LETTER);
if (display1 != display2 || fl1 != fl2 || (s1 && s2 && !s1->contentDataEquivalent(s2)))
ch = Detach;
else if (!s1 || !s2)
ch = Inherit;
else if (*s1 == *s2)
ch = NoChange;
else if (s1->inheritedNotEqual(s2))
ch = Inherit;
// If the pseudoStyles have changed, we want any StyleChange that is not NoChange
// because setStyle will do the right thing with anything else.
if (ch == NoChange && s1->hasPseudoStyle(RenderStyle::BEFORE)) {
RenderStyle* ps2 = s2->getPseudoStyle(RenderStyle::BEFORE);
if (!ps2)
ch = NoInherit;
else {
RenderStyle* ps1 = s1->getPseudoStyle(RenderStyle::BEFORE);
ch = ps1 && *ps1 == *ps2 ? NoChange : NoInherit;
}
}
if (ch == NoChange && s1->hasPseudoStyle(RenderStyle::AFTER)) {
RenderStyle* ps2 = s2->getPseudoStyle(RenderStyle::AFTER);
if (!ps2)
ch = NoInherit;
else {
RenderStyle* ps1 = s1->getPseudoStyle(RenderStyle::AFTER);
ch = ps2 && *ps1 == *ps2 ? NoChange : NoInherit;
}
}
return ch;
}
void Node::attach()
{
ASSERT(!attached());
ASSERT(!renderer() || (renderer()->style() && renderer()->parent()));
// If this node got a renderer it may be the previousRenderer() of sibling text nodes and thus affect the
// result of Text::rendererIsNeeded() for those nodes.
if (renderer()) {
for (Node* next = nextSibling(); next; next = next->nextSibling()) {
if (next->renderer())
break;
if (!next->attached())
break; // Assume this means none of the following siblings are attached.
if (next->isTextNode())
next->createRendererIfNeeded();
}
}
m_attached = true;
}
void Node::willRemove()
{
}
void Node::detach()
{
m_inDetach = true;
if (renderer())
renderer()->destroy();
setRenderer(0);
Document* doc = document();
if (m_hovered)
doc->hoveredNodeDetached(this);
if (m_inActiveChain)
doc->activeChainNodeDetached(this);
m_active = false;
m_hovered = false;
m_inActiveChain = false;
m_attached = false;
m_inDetach = false;
}
void Node::insertedIntoDocument()
{
setInDocument(true);
insertedIntoTree(false);
}
void Node::removedFromDocument()
{
if (m_document && m_document->getCSSTarget() == this)
m_document->setCSSTarget(0);
setInDocument(false);
removedFromTree(false);
}
Node *Node::previousEditable() const
{
Node *node = previousLeafNode();
while (node) {
if (node->isContentEditable())
return node;
node = node->previousLeafNode();
}
return 0;
}
Node *Node::nextEditable() const
{
Node *node = nextLeafNode();
while (node) {
if (node->isContentEditable())
return node;
node = node->nextLeafNode();
}
return 0;
}
RenderObject * Node::previousRenderer()
{
for (Node *n = previousSibling(); n; n = n->previousSibling()) {
if (n->renderer())
return n->renderer();
}
return 0;
}
RenderObject * Node::nextRenderer()
{
// Avoid an O(n^2) problem with this function by not checking for nextRenderer() when the parent element hasn't even
// been attached yet.
if (parent() && !parent()->attached())
return 0;
for (Node *n = nextSibling(); n; n = n->nextSibling()) {
if (n->renderer())
return n->renderer();
}
return 0;
}
// FIXME: This code is used by editing. Seems like it could move over there and not pollute Node.
Node *Node::previousNodeConsideringAtomicNodes() const
{
if (previousSibling()) {
Node *n = previousSibling();
while (!isAtomicNode(n) && n->lastChild())
n = n->lastChild();
return n;
}
else if (parentNode()) {
return parentNode();
}
else {
return 0;
}
}
Node *Node::nextNodeConsideringAtomicNodes() const
{
if (!isAtomicNode(this) && firstChild())
return firstChild();
if (nextSibling())
return nextSibling();
const Node *n = this;
while (n && !n->nextSibling())
n = n->parentNode();
if (n)
return n->nextSibling();
return 0;
}
Node *Node::previousLeafNode() const
{
Node *node = previousNodeConsideringAtomicNodes();
while (node) {
if (isAtomicNode(node))
return node;
node = node->previousNodeConsideringAtomicNodes();
}
return 0;
}
Node *Node::nextLeafNode() const
{
Node *node = nextNodeConsideringAtomicNodes();
while (node) {
if (isAtomicNode(node))
return node;
node = node->nextNodeConsideringAtomicNodes();
}
return 0;
}
void Node::createRendererIfNeeded()
{
if (!document()->shouldCreateRenderers())
return;
ASSERT(!renderer());
Node *parent = parentNode();
ASSERT(parent);
RenderObject *parentRenderer = parent->renderer();
if (parentRenderer && parentRenderer->canHaveChildren()
#if ENABLE(SVG)
&& parent->childShouldCreateRenderer(this)
#endif
) {
RenderStyle* style = styleForRenderer(parentRenderer);
if (rendererIsNeeded(style)) {
if (RenderObject* r = createRenderer(document()->renderArena(), style)) {
if (!parentRenderer->isChildAllowed(r, style))
r->destroy();
else {
setRenderer(r);
renderer()->setAnimatableStyle(style);
parentRenderer->addChild(renderer(), nextRenderer());
}
}
}
style->deref(document()->renderArena());
}
}
RenderStyle *Node::styleForRenderer(RenderObject *parent)
{
RenderStyle *style = parent->style();
style->ref();
return style;
}
bool Node::rendererIsNeeded(RenderStyle *style)
{
return (document()->documentElement() == this) || (style->display() != NONE);
}
RenderObject *Node::createRenderer(RenderArena *arena, RenderStyle *style)
{
ASSERT(false);
return 0;
}
RenderStyle* Node::renderStyle() const
{
return m_renderer ? m_renderer->style() : 0;
}
void Node::setRenderStyle(RenderStyle* s)
{
if (m_renderer)
m_renderer->setAnimatableStyle(s);
}
RenderStyle* Node::computedStyle()
{
return parent() ? parent()->computedStyle() : 0;
}
int Node::maxCharacterOffset() const
{
ASSERT_NOT_REACHED();
return 0;
}
// FIXME: Shouldn't these functions be in the editing code? Code that asks questions about HTML in the core DOM class
// is obviously misplaced.
bool Node::canStartSelection() const
{
if (isContentEditable())
return true;
return parent() ? parent()->canStartSelection() : true;
}
Node* Node::shadowAncestorNode()
{
#if ENABLE(SVG)
// SVG elements living in a shadow tree only occour when <use> created them.
// For these cases we do NOT want to return the shadowParentNode() here
// but the actual shadow tree element - as main difference to the HTML forms
// shadow tree concept. (This function _could_ be made virtual - opinions?)
if (isSVGElement())
return this;
#endif
Node *n = this;
while (n) {
if (n->isShadowNode())
return n->shadowParentNode();
n = n->parentNode();
}
return this;
}
bool Node::isBlockFlow() const
{
return renderer() && renderer()->isBlockFlow();
}
bool Node::isBlockFlowOrBlockTable() const
{
return renderer() && (renderer()->isBlockFlow() || renderer()->isTable() && !renderer()->isInline());
}
bool Node::isEditableBlock() const
{
return isContentEditable() && isBlockFlow();
}
Element *Node::enclosingBlockFlowOrTableElement() const
{
Node *n = const_cast<Node *>(this);
if (isBlockFlowOrBlockTable())
return static_cast<Element *>(n);
while (1) {
n = n->parentNode();
if (!n)
break;
if (n->isBlockFlowOrBlockTable() || n->hasTagName(bodyTag))
return static_cast<Element *>(n);
}
return 0;
}
Element *Node::enclosingBlockFlowElement() const
{
Node *n = const_cast<Node *>(this);
if (isBlockFlow())
return static_cast<Element *>(n);
while (1) {
n = n->parentNode();
if (!n)
break;
if (n->isBlockFlow() || n->hasTagName(bodyTag))
return static_cast<Element *>(n);
}
return 0;
}
Element *Node::enclosingInlineElement() const
{
Node *n = const_cast<Node *>(this);
Node *p;
while (1) {
p = n->parentNode();
if (!p || p->isBlockFlow() || p->hasTagName(bodyTag))
return static_cast<Element *>(n);
// Also stop if any previous sibling is a block
for (Node *sibling = n->previousSibling(); sibling; sibling = sibling->previousSibling()) {
if (sibling->isBlockFlow())
return static_cast<Element *>(n);
}
n = p;
}
ASSERT_NOT_REACHED();
return 0;
}
Element* Node::rootEditableElement() const
{
Element* result = 0;
for (Node* n = const_cast<Node*>(this); n && n->isContentEditable(); n = n->parentNode()) {
if (n->isElementNode())
result = static_cast<Element*>(n);
if (n->hasTagName(bodyTag))
break;
}
return result;
}
bool Node::inSameContainingBlockFlowElement(Node *n)
{
return n ? enclosingBlockFlowElement() == n->enclosingBlockFlowElement() : false;
}
// FIXME: End of obviously misplaced HTML editing functions. Try to move these out of Node.
PassRefPtr<NodeList> Node::getElementsByTagName(const String& name)
{
return getElementsByTagNameNS("*", name);
}
PassRefPtr<NodeList> Node::getElementsByTagNameNS(const String& namespaceURI, const String& localName)
{
if (localName.isNull())
return 0;
String name = localName;
if (document()->isHTMLDocument())
name = localName.lower();
return TagNodeList::create(this, namespaceURI.isEmpty() ? nullAtom : AtomicString(namespaceURI), name);
}
PassRefPtr<NodeList> Node::getElementsByName(const String& elementName)
{
if (!m_nodeLists) {
m_nodeLists.set(new NodeListsNodeData);
document()->addNodeListCache();
}
pair<NodeListsNodeData::CacheMap::iterator, bool> result = m_nodeLists->m_nameNodeListCaches.add(elementName, 0);
if (result.second)
result.first->second = new DynamicNodeList::Caches;
return NameNodeList::create(this, elementName, result.first->second);
}
PassRefPtr<NodeList> Node::getElementsByClassName(const String& classNames)
{
if (!m_nodeLists) {
m_nodeLists.set(new NodeListsNodeData);
document()->addNodeListCache();
}
pair<NodeListsNodeData::CacheMap::iterator, bool> result = m_nodeLists->m_classNodeListCaches.add(classNames, 0);
if (result.second)
result.first->second = new DynamicNodeList::Caches;
return ClassNodeList::create(this, classNames, result.first->second);
}
PassRefPtr<Element> Node::querySelector(const String& selectors, ExceptionCode& ec)
{
if (selectors.isNull() || selectors.isEmpty()) {
ec = SYNTAX_ERR;
return 0;
}
CSSStyleSheet tempStyleSheet(document());
CSSParser p(true);
RefPtr<CSSRule> rule = p.parseRule(&tempStyleSheet, selectors + "{}");
if (!rule || !rule->isStyleRule()) {
ec = SYNTAX_ERR;
return 0;
}
CSSStyleSelector::SelectorChecker selectorChecker(document(), !document()->inCompatMode());
CSSSelector* querySelector = static_cast<CSSStyleRule*>(rule.get())->selector();
// FIXME: We can speed this up by implementing caching similar to the one use by getElementById
for (Node* n = firstChild(); n; n = n->traverseNextNode(this)) {
if (n->isElementNode()) {
Element* element = static_cast<Element*>(n);
for (CSSSelector* selector = querySelector; selector; selector = selector->next()) {
if (selectorChecker.checkSelector(selector, element))
return element;
}
}
}
return 0;
}
PassRefPtr<NodeList> Node::querySelectorAll(const String& selectors, ExceptionCode& ec)
{
if (selectors.isNull() || selectors.isEmpty()) {
ec = SYNTAX_ERR;
return 0;
}
CSSStyleSheet tempStyleSheet(document());
CSSParser p(true);
RefPtr<CSSRule> rule = p.parseRule(&tempStyleSheet, selectors + "{}");
if (!rule || !rule->isStyleRule()) {
ec = SYNTAX_ERR;
return 0;
}
return createSelectorNodeList(this, static_cast<CSSStyleRule*>(rule.get())->selector());
}
Document *Node::ownerDocument() const
{
Document *doc = document();
return doc == this ? 0 : doc;
}
bool Node::hasAttributes() const
{
return false;
}
NamedAttrMap* Node::attributes() const
{
return 0;
}
KURL Node::baseURI() const
{
return parentNode() ? parentNode()->baseURI() : KURL();
}
bool Node::isEqualNode(Node *other) const
{
if (!other)
return false;
if (nodeType() != other->nodeType())
return false;
if (nodeName() != other->nodeName())
return false;
if (localName() != other->localName())
return false;
if (namespaceURI() != other->namespaceURI())
return false;
if (prefix() != other->prefix())
return false;
if (nodeValue() != other->nodeValue())
return false;
NamedAttrMap *attrs = attributes();
NamedAttrMap *otherAttrs = other->attributes();
if (!attrs && otherAttrs)
return false;
if (attrs && !attrs->mapsEquivalent(otherAttrs))
return false;
Node *child = firstChild();
Node *otherChild = other->firstChild();
while (child) {
if (!child->isEqualNode(otherChild))
return false;
child = child->nextSibling();
otherChild = otherChild->nextSibling();
}
if (otherChild)
return false;
// FIXME: For DocumentType nodes we should check equality on
// the entities and notations NamedNodeMaps as well.
return true;
}
bool Node::isDefaultNamespace(const String &namespaceURI) const
{
// Implemented according to
// http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms.html#isDefaultNamespaceAlgo
switch (nodeType()) {
case ELEMENT_NODE: {
const Element *elem = static_cast<const Element *>(this);
if (elem->prefix().isNull())
return elem->namespaceURI() == namespaceURI;
if (elem->hasAttributes()) {
NamedAttrMap *attrs = elem->attributes();
for (unsigned i = 0; i < attrs->length(); i++) {
Attribute *attr = attrs->attributeItem(i);
if (attr->localName() == "xmlns")
return attr->value() == namespaceURI;
}
}
if (Element* ancestor = ancestorElement())
return ancestor->isDefaultNamespace(namespaceURI);
return false;
}
case DOCUMENT_NODE:
return static_cast <const Document *>(this)->documentElement()->isDefaultNamespace(namespaceURI);
case ENTITY_NODE:
case NOTATION_NODE:
case DOCUMENT_TYPE_NODE:
case DOCUMENT_FRAGMENT_NODE:
return false;
case ATTRIBUTE_NODE: {
const Attr *attr = static_cast<const Attr *>(this);
if (attr->ownerElement())
return attr->ownerElement()->isDefaultNamespace(namespaceURI);
return false;
}
default:
if (Element* ancestor = ancestorElement())
return ancestor->isDefaultNamespace(namespaceURI);
return false;
}
}
String Node::lookupPrefix(const String &namespaceURI) const
{
// Implemented according to
// http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms.html#lookupNamespacePrefixAlgo
if (namespaceURI.isEmpty())
return String();
switch (nodeType()) {
case ELEMENT_NODE:
return lookupNamespacePrefix(namespaceURI, static_cast<const Element *>(this));
case DOCUMENT_NODE:
return static_cast<const Document *>(this)->documentElement()->lookupPrefix(namespaceURI);
case ENTITY_NODE:
case NOTATION_NODE:
case DOCUMENT_FRAGMENT_NODE:
case DOCUMENT_TYPE_NODE:
return String();
case ATTRIBUTE_NODE: {
const Attr *attr = static_cast<const Attr *>(this);
if (attr->ownerElement())
return attr->ownerElement()->lookupPrefix(namespaceURI);
return String();
}
default:
if (Element* ancestor = ancestorElement())
return ancestor->lookupPrefix(namespaceURI);
return String();
}
}
String Node::lookupNamespaceURI(const String &prefix) const
{
// Implemented according to
// http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms.html#lookupNamespaceURIAlgo
if (!prefix.isNull() && prefix.isEmpty())
return String();
switch (nodeType()) {
case ELEMENT_NODE: {
const Element *elem = static_cast<const Element *>(this);
if (!elem->namespaceURI().isNull() && elem->prefix() == prefix)
return elem->namespaceURI();
if (elem->hasAttributes()) {
NamedAttrMap *attrs = elem->attributes();
for (unsigned i = 0; i < attrs->length(); i++) {
Attribute *attr = attrs->attributeItem(i);
if (attr->prefix() == "xmlns" && attr->localName() == prefix) {
if (!attr->value().isEmpty())
return attr->value();
return String();
} else if (attr->localName() == "xmlns" && prefix.isNull()) {
if (!attr->value().isEmpty())
return attr->value();
return String();
}
}
}
if (Element* ancestor = ancestorElement())
return ancestor->lookupNamespaceURI(prefix);
return String();
}
case DOCUMENT_NODE:
return static_cast<const Document *>(this)->documentElement()->lookupNamespaceURI(prefix);
case ENTITY_NODE:
case NOTATION_NODE:
case DOCUMENT_TYPE_NODE:
case DOCUMENT_FRAGMENT_NODE:
return String();
case ATTRIBUTE_NODE: {
const Attr *attr = static_cast<const Attr *>(this);
if (attr->ownerElement())
return attr->ownerElement()->lookupNamespaceURI(prefix);
else
return String();
}
default:
if (Element* ancestor = ancestorElement())
return ancestor->lookupNamespaceURI(prefix);
return String();
}
}
String Node::lookupNamespacePrefix(const String &_namespaceURI, const Element *originalElement) const
{
if (_namespaceURI.isNull())
return String();
if (originalElement->lookupNamespaceURI(prefix()) == _namespaceURI)
return prefix();
if (hasAttributes()) {
NamedAttrMap *attrs = attributes();
for (unsigned i = 0; i < attrs->length(); i++) {
Attribute *attr = attrs->attributeItem(i);
if (attr->prefix() == "xmlns" &&
attr->value() == _namespaceURI &&
originalElement->lookupNamespaceURI(attr->localName()) == _namespaceURI)
return attr->localName();
}
}
if (Element* ancestor = ancestorElement())
return ancestor->lookupNamespacePrefix(_namespaceURI, originalElement);
return String();
}
void Node::appendTextContent(bool convertBRsToNewlines, StringBuilder& content) const
{
switch (nodeType()) {
case TEXT_NODE:
case CDATA_SECTION_NODE:
case COMMENT_NODE:
content.append(static_cast<const CharacterData*>(this)->CharacterData::nodeValue());
break;
case PROCESSING_INSTRUCTION_NODE:
content.append(static_cast<const ProcessingInstruction*>(this)->ProcessingInstruction::nodeValue());
break;
case ELEMENT_NODE:
if (hasTagName(brTag) && convertBRsToNewlines) {
content.append('\n');
break;
}
// Fall through.
case ATTRIBUTE_NODE:
case ENTITY_NODE:
case ENTITY_REFERENCE_NODE:
case DOCUMENT_FRAGMENT_NODE:
content.setNonNull();
for (Node *child = firstChild(); child; child = child->nextSibling()) {
if (child->nodeType() == COMMENT_NODE || child->nodeType() == PROCESSING_INSTRUCTION_NODE)
continue;
child->appendTextContent(convertBRsToNewlines, content);
}
break;
case DOCUMENT_NODE:
case DOCUMENT_TYPE_NODE:
case NOTATION_NODE:
case XPATH_NAMESPACE_NODE:
break;
}
}
String Node::textContent(bool convertBRsToNewlines) const
{
StringBuilder content;
appendTextContent(convertBRsToNewlines, content);
return content.toString();
}
void Node::setTextContent(const String &text, ExceptionCode& ec)
{
switch (nodeType()) {
case TEXT_NODE:
case CDATA_SECTION_NODE:
case COMMENT_NODE:
case PROCESSING_INSTRUCTION_NODE:
setNodeValue(text, ec);
break;
case ELEMENT_NODE:
case ATTRIBUTE_NODE:
case ENTITY_NODE:
case ENTITY_REFERENCE_NODE:
case DOCUMENT_FRAGMENT_NODE: {
ContainerNode *container = static_cast<ContainerNode *>(this);
container->removeChildren();
if (!text.isEmpty())
appendChild(document()->createTextNode(text), ec);
break;
}
case DOCUMENT_NODE:
case DOCUMENT_TYPE_NODE:
case NOTATION_NODE:
default:
// Do nothing
break;
}
}
Element* Node::ancestorElement() const
{
// In theory, there can be EntityReference nodes between elements, but this is currently not supported.
for (Node* n = parentNode(); n; n = n->parentNode()) {
if (n->isElementNode())
return static_cast<Element*>(n);
}
return 0;
}
bool Node::offsetInCharacters() const
{
return false;
}
#ifndef NDEBUG
static void appendAttributeDesc(const Node* node, String& string, const QualifiedName& name, const char* attrDesc)
{
if (node->isElementNode()) {
String attr = static_cast<const Element*>(node)->getAttribute(name);
if (!attr.isEmpty()) {
string += attrDesc;
string += attr;
}
}
}
void Node::showNode(const char* prefix) const
{
if (!prefix)
prefix = "";
if (isTextNode()) {
String value = nodeValue();
value.replace('\\', "\\\\");
value.replace('\n', "\\n");
fprintf(stderr, "%s%s\t%p \"%s\"\n", prefix, nodeName().utf8().data(), this, value.utf8().data());
} else {
String attrs = "";
appendAttributeDesc(this, attrs, classAttr, " CLASS=");
appendAttributeDesc(this, attrs, styleAttr, " STYLE=");
fprintf(stderr, "%s%s\t%p%s\n", prefix, nodeName().utf8().data(), this, attrs.utf8().data());
}
}
void Node::showTreeForThis() const
{
showTreeAndMark(this, "*");
}
void Node::showTreeAndMark(const Node* markedNode1, const char* markedLabel1, const Node* markedNode2, const char * markedLabel2) const
{
const Node* rootNode;
const Node* node = this;
while (node->parentNode() && !node->hasTagName(bodyTag))
node = node->parentNode();
rootNode = node;
for (node = rootNode; node; node = node->traverseNextNode()) {
if (node == markedNode1)
fprintf(stderr, "%s", markedLabel1);
if (node == markedNode2)
fprintf(stderr, "%s", markedLabel2);
for (const Node* tmpNode = node; tmpNode && tmpNode != rootNode; tmpNode = tmpNode->parentNode())
fprintf(stderr, "\t");
node->showNode();
}
}
void Node::formatForDebugger(char* buffer, unsigned length) const
{
String result;
String s;
s = nodeName();
if (s.length() == 0)
result += "<none>";
else
result += s;
strncpy(buffer, result.utf8().data(), length - 1);
}
#endif
// --------
void NodeListsNodeData::invalidateCaches()
{
m_childNodeListCaches.reset();
invalidateCachesThatDependOnAttributes();
}
void NodeListsNodeData::invalidateCachesThatDependOnAttributes()
{
CacheMap::iterator classCachesEnd = m_classNodeListCaches.end();
for (CacheMap::iterator it = m_classNodeListCaches.begin(); it != classCachesEnd; ++it)
it->second->reset();
CacheMap::iterator nameCachesEnd = m_nameNodeListCaches.end();
for (CacheMap::iterator it = m_nameNodeListCaches.begin(); it != nameCachesEnd; ++it)
it->second->reset();
}
bool NodeListsNodeData::isEmpty() const
{
if (!m_listsWithCaches.isEmpty())
return false;
if (m_childNodeListCaches.refCount)
return false;
CacheMap::const_iterator classCachesEnd = m_classNodeListCaches.end();
for (CacheMap::const_iterator it = m_classNodeListCaches.begin(); it != classCachesEnd; ++it) {
if (it->second->refCount)
return false;
}
CacheMap::const_iterator nameCachesEnd = m_nameNodeListCaches.end();
for (CacheMap::const_iterator it = m_nameNodeListCaches.begin(); it != nameCachesEnd; ++it) {
if (it->second->refCount)
return false;
}
return true;
}
void Node::getSubresourceURLs(Vector<KURL>& urls) const
{
Vector<String> subresourceStrings;
getSubresourceAttributeStrings(subresourceStrings);
for (unsigned i = 0; i < subresourceStrings.size(); ++i) {
String& subresourceString(subresourceStrings[i]);
// FIXME: Is parseURL appropriate here?
if (subresourceString.length())
urls.append(document()->completeURL(parseURL(subresourceString)));
}
}
// --------
} // namespace WebCore
#ifndef NDEBUG
void showTree(const WebCore::Node* node)
{
if (node)
node->showTreeForThis();
}
#endif
|