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
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
* Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
* Copyright (C) 2005-2016 Apple Inc. All rights reserved.
* Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
* Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
* Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
* Copyright (C) Research In Motion Limited 2011. All rights reserved.
* Copyright (C) 2014 Yusuke Suzuki <utatane.tea@gmail.com>
*
* 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 "SelectorChecker.h"
#include "CSSSelector.h"
#include "CSSSelectorList.h"
#include "CommonAtomStrings.h"
#include "Document.h"
#include "ElementChildIteratorInlines.h"
#include "ElementRareData.h"
#include "ElementTraversal.h"
#include "FrameSelection.h"
#include "HTMLDocument.h"
#include "HTMLNames.h"
#include "HTMLSlotElement.h"
#include "InspectorInstrumentation.h"
#include "LocalFrame.h"
#include "Page.h"
#include "RenderElement.h"
#include "RuleFeature.h"
#include "SelectorCheckerTestFunctions.h"
#include "ShadowRoot.h"
#include "StyleRule.h"
#include "StyleScope.h"
#include "Text.h"
#include "TypedElementDescendantIteratorInlines.h"
#include "ViewTransition.h"
#include "ViewTransitionTypeSet.h"
namespace WebCore {
using namespace HTMLNames;
enum class VisitedMatchType : unsigned char {
Disabled, Enabled
};
static bool matchesActiveViewTransitionTypePseudoClass(const Element& element, const FixedVector<AtomString>& types)
{
// This pseudo class only matches the root element.
if (&element != element.document().documentElement())
return false;
if (const auto* viewTransition = element.document().activeViewTransition()) {
const auto& activeTypes = viewTransition->types();
for (const auto& type : types) {
// https://github.com/w3c/csswg-drafts/issues/9534#issuecomment-1802364085
// RESOLVED: type can accept any idents, except 'none' or '-ua-' prefixes
if (type.convertToASCIILowercase() == "none"_s || type.convertToASCIILowercase().startsWith("-ua-"_s))
continue;
if (activeTypes.hasType(type))
return true;
}
}
return false;
}
struct SelectorChecker::LocalContext {
LocalContext(const CSSSelector& selector, const Element& element, VisitedMatchType visitedMatchType, std::optional<Style::PseudoElementIdentifier> pseudoElementIdentifier)
: selector(&selector)
, element(&element)
, visitedMatchType(visitedMatchType)
, firstSelectorOfTheFragment(&selector)
, pseudoElementIdentifier(pseudoElementIdentifier)
{ }
const CSSSelector* selector;
const Element* element;
VisitedMatchType visitedMatchType;
const CSSSelector* firstSelectorOfTheFragment;
std::optional<Style::PseudoElementIdentifier> pseudoElementIdentifier;
bool isMatchElement { true };
bool isSubjectOrAdjacentElement { true };
bool inFunctionalPseudoClass { false };
bool pseudoElementEffective { true };
bool hasScrollbarPseudo { false };
bool hasSelectionPseudo { false };
bool hasViewTransitionPseudo { false };
bool mustMatchHostPseudoClass { false };
bool matchedHostPseudoClass { false };
};
static inline void addStyleRelation(SelectorChecker::CheckingContext& checkingContext, const Element& element, Style::Relation::Type type, unsigned value = 1)
{
ASSERT(value == 1 || type == Style::Relation::NthChildIndex || type == Style::Relation::AffectedByEmpty);
if (checkingContext.resolvingMode != SelectorChecker::Mode::ResolvingStyle)
return;
if (type == Style::Relation::AffectsNextSibling && !checkingContext.styleRelations.isEmpty()) {
auto& last = checkingContext.styleRelations.last();
if (last.type == Style::Relation::AffectsNextSibling && last.element == element.nextElementSibling()) {
++last.value;
last.element = &element;
return;
}
}
checkingContext.styleRelations.append({ element, type, value });
}
static inline bool isFirstChildElement(const Element& element)
{
return !ElementTraversal::previousSibling(element);
}
static inline bool isLastChildElement(const Element& element)
{
return !ElementTraversal::nextSibling(element);
}
static inline bool isFirstOfType(const Element& element, const QualifiedName& type)
{
for (const Element* sibling = ElementTraversal::previousSibling(element); sibling; sibling = ElementTraversal::previousSibling(*sibling)) {
if (sibling->hasTagName(type))
return false;
}
return true;
}
static inline bool isLastOfType(const Element& element, const QualifiedName& type)
{
for (const Element* sibling = ElementTraversal::nextSibling(element); sibling; sibling = ElementTraversal::nextSibling(*sibling)) {
if (sibling->hasTagName(type))
return false;
}
return true;
}
static inline int countElementsBefore(const Element& element)
{
int count = 0;
for (const Element* sibling = ElementTraversal::previousSibling(element); sibling; sibling = ElementTraversal::previousSibling(*sibling)) {
unsigned index = sibling->childIndex();
if (index) {
count += index;
break;
}
count++;
}
return count;
}
static inline int countElementsOfTypeBefore(const Element& element, const QualifiedName& type)
{
int count = 0;
for (const Element* sibling = ElementTraversal::previousSibling(element); sibling; sibling = ElementTraversal::previousSibling(*sibling)) {
if (sibling->hasTagName(type))
++count;
}
return count;
}
static inline int countElementsAfter(const Element& element)
{
int count = 0;
for (const Element* sibling = ElementTraversal::nextSibling(element); sibling; sibling = ElementTraversal::nextSibling(*sibling))
++count;
return count;
}
static inline int countElementsOfTypeAfter(const Element& element, const QualifiedName& type)
{
int count = 0;
for (const Element* sibling = ElementTraversal::nextSibling(element); sibling; sibling = ElementTraversal::nextSibling(*sibling)) {
if (sibling->hasTagName(type))
++count;
}
return count;
}
SelectorChecker::SelectorChecker(Document& document)
: m_strictParsing(!document.inQuirksMode())
, m_documentIsHTML(document.isHTMLDocument())
{
}
bool SelectorChecker::match(const CSSSelector& selector, const Element& element, CheckingContext& checkingContext) const
{
ASSERT_WITH_SECURITY_IMPLICATION(!selector.destructorHasBeenCalled());
auto pseudoElementIdentifier = checkingContext.pseudoId == PseudoId::None ? std::nullopt : std::optional(Style::PseudoElementIdentifier { checkingContext.pseudoId, checkingContext.pseudoElementNameArgument });
LocalContext context(selector, element, checkingContext.resolvingMode == SelectorChecker::Mode::QueryingRules ? VisitedMatchType::Disabled : VisitedMatchType::Enabled, pseudoElementIdentifier);
if (checkingContext.styleScopeOrdinal == Style::ScopeOrdinal::Shadow) {
ASSERT(element.shadowRoot());
// Rules coming from the element's shadow tree must match :host pseudo class.
context.mustMatchHostPseudoClass = true;
}
PseudoIdSet pseudoIdSet;
MatchResult result = matchRecursively(checkingContext, context, pseudoIdSet);
if (result.match != Match::SelectorMatches)
return false;
if (checkingContext.pseudoId != PseudoId::None && !pseudoIdSet.has(checkingContext.pseudoId))
return false;
if (checkingContext.pseudoId == PseudoId::None && pseudoIdSet) {
PseudoIdSet publicPseudoIdSet = pseudoIdSet & PseudoIdSet::fromMask(static_cast<unsigned>(PseudoId::PublicPseudoIdMask));
if (checkingContext.resolvingMode == Mode::ResolvingStyle && publicPseudoIdSet)
checkingContext.pseudoIDSet = publicPseudoIdSet;
// When ignoring virtual pseudo elements, the context's pseudo should also be PseudoId::None but that does
// not cause a failure.
return checkingContext.resolvingMode == Mode::CollectingRulesIgnoringVirtualPseudoElements || result.matchType == MatchType::Element;
}
return true;
}
bool SelectorChecker::matchHostPseudoClass(const CSSSelector& selector, const Element& element, CheckingContext& checkingContext) const
{
if (!element.shadowRoot())
return false;
if (auto* selectorList = selector.selectorList()) {
ASSERT(selectorList->listSize() == 1);
LocalContext context(*selectorList->first(), element, VisitedMatchType::Enabled, std::nullopt);
context.inFunctionalPseudoClass = true;
context.pseudoElementEffective = false;
PseudoIdSet ignoreDynamicPseudo;
if (matchRecursively(checkingContext, context, ignoreDynamicPseudo).match != Match::SelectorMatches)
return false;
}
return true;
}
inline static bool hasViewTransitionPseudoElement(const PseudoIdSet& dynamicPseudoIdSet)
{
PseudoIdSet functionalPseudoElementSet = {
PseudoId::ViewTransition,
PseudoId::ViewTransitionGroup,
PseudoId::ViewTransitionImagePair,
PseudoId::ViewTransitionNew,
PseudoId::ViewTransitionOld,
};
return !!(dynamicPseudoIdSet & functionalPseudoElementSet);
}
inline static bool hasScrollbarPseudoElement(const PseudoIdSet& dynamicPseudoIdSet)
{
PseudoIdSet scrollbarIdSet = {
PseudoId::WebKitScrollbar,
PseudoId::WebKitScrollbarThumb,
PseudoId::WebKitScrollbarButton,
PseudoId::WebKitScrollbarTrack,
PseudoId::WebKitScrollbarTrackPiece,
PseudoId::WebKitScrollbarCorner
};
if (dynamicPseudoIdSet & scrollbarIdSet)
return true;
// PseudoId::WebKitResizer does not always have a scrollbar but it is a scrollbar-like pseudo element
// because it can have more than one pseudo element.
return dynamicPseudoIdSet.has(PseudoId::WebKitResizer);
}
static SelectorChecker::LocalContext localContextForParent(const SelectorChecker::LocalContext& context)
{
SelectorChecker::LocalContext updatedContext(context);
// Disable :visited matching when we see the first link.
if (context.element->isLink())
updatedContext.visitedMatchType = VisitedMatchType::Disabled;
updatedContext.isMatchElement = false;
updatedContext.isSubjectOrAdjacentElement = false;
if (updatedContext.mustMatchHostPseudoClass) {
updatedContext.element = nullptr;
return updatedContext;
}
// Move to the shadow host if the parent is the shadow root and mark that we must match :host
if (auto* shadowRoot = dynamicDowncast<ShadowRoot>(context.element->parentNode())) {
updatedContext.element = shadowRoot->host();
updatedContext.mustMatchHostPseudoClass = true;
return updatedContext;
}
updatedContext.element = context.element->parentElement();
return updatedContext;
}
// Recursive check of selectors and combinators
// It can return 4 different values:
// * SelectorMatches - the selector matches the element e
// * SelectorFailsLocally - the selector fails for the element e
// * SelectorFailsAllSiblings - the selector fails for e and any sibling of e
// * SelectorFailsCompletely - the selector fails for e and any sibling or ancestor of e
SelectorChecker::MatchResult SelectorChecker::matchRecursively(CheckingContext& checkingContext, LocalContext& context, PseudoIdSet& dynamicPseudoIdSet) const
{
MatchType matchType = MatchType::Element;
// The first selector has to match.
if (!checkOne(checkingContext, context, matchType))
return MatchResult::fails(Match::SelectorFailsLocally);
if (context.selector->match() == CSSSelector::Match::PseudoElement) {
switch (context.selector->pseudoElement()) {
case CSSSelector::PseudoElement::UserAgentPart:
case CSSSelector::PseudoElement::UserAgentPartLegacyAlias: {
// In functional pseudo class, custom pseudo elements are always disabled.
// FIXME: We should accept custom pseudo elements inside :is()/:matches().
if (context.inFunctionalPseudoClass)
return MatchResult::fails(Match::SelectorFailsCompletely);
if (ShadowRoot* root = context.element->containingShadowRoot()) {
if (root->mode() != ShadowRootMode::UserAgent)
return MatchResult::fails(Match::SelectorFailsLocally);
if (context.element->userAgentPart() != context.selector->value())
return MatchResult::fails(Match::SelectorFailsLocally);
} else
return MatchResult::fails(Match::SelectorFailsLocally);
break;
}
case CSSSelector::PseudoElement::WebKitUnknown:
return MatchResult::fails(Match::SelectorFailsLocally);
default: {
if (!context.pseudoElementEffective)
return MatchResult::fails(Match::SelectorFailsCompletely);
if (checkingContext.resolvingMode == Mode::QueryingRules)
return MatchResult::fails(Match::SelectorFailsCompletely);
auto pseudoId = CSSSelector::pseudoId(context.selector->pseudoElement());
if (pseudoId != PseudoId::None)
dynamicPseudoIdSet.add(pseudoId);
matchType = MatchType::VirtualPseudoElementOnly;
break;
}
}
}
// The rest of the selectors has to match
auto relation = context.selector->relation();
// Prepare next selector
const CSSSelector* leftSelector = context.selector->tagHistory();
if (!leftSelector) {
if (context.mustMatchHostPseudoClass && !context.matchedHostPseudoClass)
return MatchResult::fails(Match::SelectorFailsCompletely);
return MatchResult::matches(matchType);
}
LocalContext nextContext(context);
nextContext.selector = leftSelector;
if (relation != CSSSelector::Relation::Subselector) {
// Bail-out if this selector is irrelevant for the pseudoId
if (context.pseudoElementIdentifier && !dynamicPseudoIdSet.has(context.pseudoElementIdentifier->pseudoId))
return MatchResult::fails(Match::SelectorFailsCompletely);
// Disable :visited matching when we try to match anything else than an ancestors.
if (!context.selector->hasDescendantOrChildRelation())
nextContext.visitedMatchType = VisitedMatchType::Disabled;
nextContext.pseudoElementIdentifier = std::nullopt;
bool allowMultiplePseudoElements = relation == CSSSelector::Relation::ShadowDescendant;
// Virtual pseudo element is only effective in the rightmost fragment.
if (!allowMultiplePseudoElements)
nextContext.pseudoElementEffective = false;
nextContext.isMatchElement = false;
}
switch (relation) {
case CSSSelector::Relation::DescendantSpace:
nextContext = localContextForParent(nextContext);
nextContext.firstSelectorOfTheFragment = nextContext.selector;
for (; nextContext.element; nextContext = localContextForParent(nextContext)) {
PseudoIdSet ignoreDynamicPseudo;
MatchResult result = matchRecursively(checkingContext, nextContext, ignoreDynamicPseudo);
ASSERT(!nextContext.pseudoElementEffective && !ignoreDynamicPseudo);
if (result.match == Match::SelectorMatches || result.match == Match::SelectorFailsCompletely)
return MatchResult::updateWithMatchType(result, matchType);
}
return MatchResult::fails(Match::SelectorFailsCompletely);
case CSSSelector::Relation::Child:
{
nextContext = localContextForParent(nextContext);
if (!nextContext.element)
return MatchResult::fails(Match::SelectorFailsCompletely);
nextContext.firstSelectorOfTheFragment = nextContext.selector;
PseudoIdSet ignoreDynamicPseudo;
MatchResult result = matchRecursively(checkingContext, nextContext, ignoreDynamicPseudo);
ASSERT(!nextContext.pseudoElementEffective && !ignoreDynamicPseudo);
if (result.match == Match::SelectorMatches || result.match == Match::SelectorFailsCompletely)
return MatchResult::updateWithMatchType(result, matchType);
return MatchResult::fails(Match::SelectorFailsAllSiblings);
}
case CSSSelector::Relation::DirectAdjacent:
{
auto relation = context.isMatchElement ? Style::Relation::AffectedByPreviousSibling : Style::Relation::DescendantsAffectedByPreviousSibling;
addStyleRelation(checkingContext, *context.element, relation);
Element* previousElement = context.element->previousElementSibling();
if (!previousElement)
return MatchResult::fails(Match::SelectorFailsAllSiblings);
addStyleRelation(checkingContext, *previousElement, Style::Relation::AffectsNextSibling);
nextContext.element = previousElement;
nextContext.firstSelectorOfTheFragment = nextContext.selector;
PseudoIdSet ignoreDynamicPseudo;
MatchResult result = matchRecursively(checkingContext, nextContext, ignoreDynamicPseudo);
ASSERT(!nextContext.pseudoElementEffective && !ignoreDynamicPseudo);
return MatchResult::updateWithMatchType(result, matchType);
}
case CSSSelector::Relation::IndirectAdjacent: {
auto relation = context.isMatchElement ? Style::Relation::AffectedByPreviousSibling : Style::Relation::DescendantsAffectedByPreviousSibling;
addStyleRelation(checkingContext, *context.element, relation);
nextContext.element = context.element->previousElementSibling();
nextContext.firstSelectorOfTheFragment = nextContext.selector;
for (; nextContext.element; nextContext.element = nextContext.element->previousElementSibling()) {
addStyleRelation(checkingContext, *nextContext.element, Style::Relation::AffectsNextSibling);
PseudoIdSet ignoreDynamicPseudo;
MatchResult result = matchRecursively(checkingContext, nextContext, ignoreDynamicPseudo);
ASSERT(!nextContext.pseudoElementEffective && !ignoreDynamicPseudo);
if (result.match == Match::SelectorMatches || result.match == Match::SelectorFailsAllSiblings || result.match == Match::SelectorFailsCompletely)
return MatchResult::updateWithMatchType(result, matchType);
}
return MatchResult::fails(Match::SelectorFailsAllSiblings);
}
case CSSSelector::Relation::Subselector:
{
// a selector is invalid if something follows a pseudo-element
// We make an exception for scrollbar pseudo elements and allow a set of pseudo classes (but nothing else)
// to follow the pseudo elements.
nextContext.hasScrollbarPseudo = hasScrollbarPseudoElement(dynamicPseudoIdSet);
nextContext.hasSelectionPseudo = dynamicPseudoIdSet.has(PseudoId::Selection);
nextContext.hasViewTransitionPseudo = hasViewTransitionPseudoElement(dynamicPseudoIdSet);
if ((context.isMatchElement || checkingContext.resolvingMode == Mode::CollectingRules) && dynamicPseudoIdSet
&& !nextContext.hasSelectionPseudo
&& !((nextContext.hasScrollbarPseudo || nextContext.hasViewTransitionPseudo) && nextContext.selector->match() == CSSSelector::Match::PseudoClass))
return MatchResult::fails(Match::SelectorFailsCompletely);
MatchResult result = matchRecursively(checkingContext, nextContext, dynamicPseudoIdSet);
return MatchResult::updateWithMatchType(result, matchType);
}
case CSSSelector::Relation::ShadowDescendant: {
auto* host = context.element->shadowHost();
if (!host)
return MatchResult::fails(Match::SelectorFailsCompletely);
nextContext.element = host;
nextContext.firstSelectorOfTheFragment = nextContext.selector;
nextContext.isSubjectOrAdjacentElement = false;
PseudoIdSet ignoreDynamicPseudo;
MatchResult result = matchRecursively(checkingContext, nextContext, ignoreDynamicPseudo);
return MatchResult::updateWithMatchType(result, matchType);
}
case CSSSelector::Relation::ShadowPartDescendant: {
// Continue matching in the scope where this rule came from.
auto* host = checkingContext.styleScopeOrdinal == Style::ScopeOrdinal::Element
? context.element->shadowHost()
: Style::hostForScopeOrdinal(*context.element, checkingContext.styleScopeOrdinal);
if (!host)
return MatchResult::fails(Match::SelectorFailsCompletely);
nextContext.element = host;
nextContext.firstSelectorOfTheFragment = nextContext.selector;
nextContext.isSubjectOrAdjacentElement = false;
// ::part rules from the element's own scope can only match if they apply to :host.
nextContext.mustMatchHostPseudoClass = checkingContext.styleScopeOrdinal == Style::ScopeOrdinal::Element;
PseudoIdSet ignoreDynamicPseudo;
MatchResult result = matchRecursively(checkingContext, nextContext, ignoreDynamicPseudo);
return MatchResult::updateWithMatchType(result, matchType);
}
case CSSSelector::Relation::ShadowSlotted: {
// We continue matching in the scope where this rule came from.
auto slot = Style::assignedSlotForScopeOrdinal(*context.element, checkingContext.styleScopeOrdinal);
if (!slot)
return MatchResult::fails(Match::SelectorFailsCompletely);
nextContext.element = slot;
nextContext.firstSelectorOfTheFragment = nextContext.selector;
nextContext.isSubjectOrAdjacentElement = false;
PseudoIdSet ignoreDynamicPseudo;
MatchResult result = matchRecursively(checkingContext, nextContext, ignoreDynamicPseudo);
return MatchResult::updateWithMatchType(result, matchType);
}
}
ASSERT_NOT_REACHED();
return MatchResult::fails(Match::SelectorFailsCompletely);
}
static bool attributeValueMatches(const Attribute& attribute, CSSSelector::Match match, const AtomString& selectorValue, bool caseSensitive)
{
const AtomString& value = attribute.value();
ASSERT(!value.isNull());
switch (match) {
case CSSSelector::Match::Set:
break;
case CSSSelector::Match::Exact:
if (caseSensitive ? selectorValue != value : !equalIgnoringASCIICase(selectorValue, value))
return false;
break;
case CSSSelector::Match::List:
{
// Ignore empty selectors or selectors containing spaces.
if (selectorValue.isEmpty() || selectorValue.find(isASCIIWhitespace<UChar>) != notFound)
return false;
unsigned startSearchAt = 0;
while (true) {
size_t foundPos;
if (caseSensitive)
foundPos = value.find(selectorValue, startSearchAt);
else
foundPos = value.findIgnoringASCIICase(selectorValue, startSearchAt);
if (foundPos == notFound)
return false;
if (!foundPos || isASCIIWhitespace(value[foundPos - 1])) {
unsigned endStr = foundPos + selectorValue.length();
if (endStr == value.length() || isASCIIWhitespace(value[endStr]))
break; // We found a match.
}
// No match. Keep looking.
startSearchAt = foundPos + 1;
}
break;
}
case CSSSelector::Match::Contain: {
bool valueContainsSelectorValue;
if (caseSensitive)
valueContainsSelectorValue = value.contains(selectorValue);
else
valueContainsSelectorValue = value.containsIgnoringASCIICase(selectorValue);
if (!valueContainsSelectorValue || selectorValue.isEmpty())
return false;
break;
}
case CSSSelector::Match::Begin:
if (selectorValue.isEmpty())
return false;
if (caseSensitive) {
if (!value.startsWith(selectorValue))
return false;
} else {
if (!value.startsWithIgnoringASCIICase(selectorValue))
return false;
}
break;
case CSSSelector::Match::End:
if (selectorValue.isEmpty())
return false;
if (caseSensitive) {
if (!value.endsWith(selectorValue))
return false;
} else {
if (!value.endsWithIgnoringASCIICase(selectorValue))
return false;
}
break;
case CSSSelector::Match::Hyphen:
if (value.length() < selectorValue.length())
return false;
if (caseSensitive) {
if (!value.startsWith(selectorValue))
return false;
} else {
if (!value.startsWithIgnoringASCIICase(selectorValue))
return false;
}
// It they start the same, check for exact match or following '-':
if (value.length() != selectorValue.length() && value[selectorValue.length()] != '-')
return false;
break;
default:
ASSERT_NOT_REACHED();
return false;
}
return true;
}
static bool anyAttributeMatches(const Element& element, const CSSSelector& selector, const QualifiedName& selectorAttr, bool caseSensitive)
{
ASSERT(element.hasAttributesWithoutUpdate());
bool isHTML = element.isHTMLElement() && element.document().isHTMLDocument();
for (auto& attribute : element.attributes()) {
if (!attribute.matches(selectorAttr.prefix(), isHTML ? selectorAttr.localNameLowercase() : selectorAttr.localName(), selectorAttr.namespaceURI()))
continue;
if (attributeValueMatches(attribute, selector.match(), selector.value(), caseSensitive))
return true;
}
return false;
}
bool SelectorChecker::attributeSelectorMatches(const Element& element, const QualifiedName& attributeName, const AtomString& attributeValue, const CSSSelector& selector)
{
ASSERT(selector.isAttributeSelector());
auto& selectorAttribute = selector.attribute();
bool isHTML = element.isHTMLElement() && element.document().isHTMLDocument();
auto& selectorName = isHTML ? selectorAttribute.localNameLowercase() : selectorAttribute.localName();
if (!Attribute::nameMatchesFilter(attributeName, selectorAttribute.prefix(), selectorName, selectorAttribute.namespaceURI()))
return false;
bool caseSensitive = true;
if (selector.attributeValueMatchingIsCaseInsensitive())
caseSensitive = false;
else if (element.document().isHTMLDocument() && element.isHTMLElement() && !HTMLDocument::isCaseSensitiveAttribute(selector.attribute()))
caseSensitive = false;
return attributeValueMatches(Attribute(attributeName, attributeValue), selector.match(), selector.value(), caseSensitive);
}
static bool canMatchHoverOrActiveInQuirksMode(const SelectorChecker::LocalContext& context)
{
// For quirks mode, follow this: http://quirks.spec.whatwg.org/#the-:active-and-:hover-quirk
// In quirks mode, a compound selector 'selector' that matches the following conditions must not match elements that would not also match the ':any-link' selector.
//
// selector uses the ':active' or ':hover' pseudo-classes.
// selector does not use a type selector.
// selector does not use an attribute selector.
// selector does not use an ID selector.
// selector does not use a class selector.
// selector does not use a pseudo-class selector other than ':active' and ':hover'.
// selector does not use a pseudo-element selector.
// selector is not part of an argument to a functional pseudo-class or pseudo-element.
if (context.inFunctionalPseudoClass)
return true;
for (const CSSSelector* selector = context.firstSelectorOfTheFragment; selector; selector = selector->tagHistory()) {
switch (selector->match()) {
case CSSSelector::Match::Tag:
if (selector->tagQName() != anyQName())
return true;
break;
case CSSSelector::Match::PseudoClass: {
auto pseudoClass = selector->pseudoClass();
if (pseudoClass != CSSSelector::PseudoClass::Hover && pseudoClass != CSSSelector::PseudoClass::Active)
return true;
break;
}
case CSSSelector::Match::Id:
case CSSSelector::Match::Class:
case CSSSelector::Match::Exact:
case CSSSelector::Match::Set:
case CSSSelector::Match::List:
case CSSSelector::Match::Hyphen:
case CSSSelector::Match::Contain:
case CSSSelector::Match::Begin:
case CSSSelector::Match::End:
case CSSSelector::Match::PagePseudoClass:
case CSSSelector::Match::PseudoElement:
return true;
case CSSSelector::Match::HasScope:
case CSSSelector::Match::NestingParent:
case CSSSelector::Match::Unknown:
case CSSSelector::Match::ForgivingUnknown:
case CSSSelector::Match::ForgivingUnknownNestContaining:
ASSERT_NOT_REACHED();
break;
}
auto relation = selector->relation();
if (relation == CSSSelector::Relation::ShadowDescendant || relation == CSSSelector::Relation::ShadowPartDescendant)
return true;
if (relation != CSSSelector::Relation::Subselector)
return false;
}
return false;
}
static inline bool tagMatches(const Element& element, const CSSSelector& simpleSelector)
{
const QualifiedName& tagQName = simpleSelector.tagQName();
if (tagQName == anyQName())
return true;
const AtomString& localName = (element.isHTMLElement() && element.document().isHTMLDocument()) ? simpleSelector.tagLowercaseLocalName() : tagQName.localName();
if (localName != starAtom() && localName != element.localName())
return false;
const AtomString& namespaceURI = tagQName.namespaceURI();
return namespaceURI == starAtom() || namespaceURI == element.namespaceURI();
}
bool SelectorChecker::checkOne(CheckingContext& checkingContext, LocalContext& context, MatchType& matchType) const
{
const Element& element = *context.element;
const CSSSelector& selector = *context.selector;
if (context.mustMatchHostPseudoClass) {
// :host doesn't combine with anything except pseudo elements.
bool isHostPseudoClass = selector.match() == CSSSelector::Match::PseudoClass && selector.pseudoClass() == CSSSelector::PseudoClass::Host;
bool isPseudoElement = selector.match() == CSSSelector::Match::PseudoElement;
// FIXME: We do not support combining :host with :not() functional pseudoclass. Combination with functional pseudoclass has been allowed for the useful :is(:host) ; but combining with :not() doesn't sound useful like :host():not(:not(:host))
// https://bugs.webkit.org/show_bug.cgi?id=283062
bool isNotPseudoClass = selector.match() == CSSSelector::Match::PseudoClass && selector.pseudoClass() == CSSSelector::PseudoClass::Not;
// We can early return when we know it's neither :host, a compound :is(:host) , a pseudo-element.
if (!isHostPseudoClass && !isPseudoElement && (!selector.selectorList() || isNotPseudoClass))
return false;
}
if (selector.match() == CSSSelector::Match::Tag)
return tagMatches(element, selector);
if (selector.match() == CSSSelector::Match::Class)
return element.hasClassName(selector.value());
if (selector.match() == CSSSelector::Match::Id) {
ASSERT(!selector.value().isNull());
return element.idForStyleResolution() == selector.value();
}
if (selector.isAttributeSelector()) {
if (!element.hasAttributes())
return false;
const QualifiedName& attr = selector.attribute();
bool caseSensitive = true;
if (selector.attributeValueMatchingIsCaseInsensitive())
caseSensitive = false;
else if (m_documentIsHTML && element.isHTMLElement() && !HTMLDocument::isCaseSensitiveAttribute(attr))
caseSensitive = false;
return anyAttributeMatches(element, selector, attr, caseSensitive);
}
if (selector.match() == CSSSelector::Match::ForgivingUnknown || selector.match() == CSSSelector::Match::ForgivingUnknownNestContaining)
return false;
if (selector.match() == CSSSelector::Match::NestingParent) {
return false;
}
if (selector.match() == CSSSelector::Match::HasScope) {
checkingContext.matchedInsideScope = true;
return &element == checkingContext.hasScope || checkingContext.matchesAllHasScopes;
}
if (selector.match() == CSSSelector::Match::PseudoClass) {
// Handle :not up front.
if (selector.pseudoClass() == CSSSelector::PseudoClass::Not) {
const CSSSelectorList* selectorList = selector.selectorList();
for (const CSSSelector* subselector = selectorList->first(); subselector; subselector = CSSSelectorList::next(subselector)) {
LocalContext subcontext(context);
subcontext.inFunctionalPseudoClass = true;
subcontext.pseudoElementEffective = false;
subcontext.selector = subselector;
subcontext.firstSelectorOfTheFragment = selectorList->first();
PseudoIdSet ignoreDynamicPseudo;
if (matchRecursively(checkingContext, subcontext, ignoreDynamicPseudo).match == Match::SelectorMatches) {
ASSERT(!ignoreDynamicPseudo);
return false;
}
}
return true;
}
if (context.hasScrollbarPseudo) {
// CSS scrollbars match a specific subset of pseudo classes, and they have specialized rules for each
// (since there are no elements involved except with window-inactive).
return checkScrollbarPseudoClass(checkingContext, element, selector);
}
if (context.hasViewTransitionPseudo)
return checkViewTransitionPseudoClass(checkingContext, element, selector);
// Normal element pseudo class checking.
switch (selector.pseudoClass()) {
// Pseudo classes:
case CSSSelector::PseudoClass::Not:
ASSERT_NOT_REACHED();
break; // Already handled up above.
case CSSSelector::PseudoClass::Empty:
{
bool result = true;
for (Node* node = element.firstChild(); node; node = node->nextSibling()) {
if (is<Element>(*node)) {
result = false;
break;
}
if (auto* textNode = dynamicDowncast<Text>(*node)) {
if (!textNode->data().isEmpty()) {
result = false;
break;
}
}
}
addStyleRelation(checkingContext, *context.element, Style::Relation::AffectedByEmpty, result);
return result;
}
case CSSSelector::PseudoClass::FirstChild: {
// first-child matches the first child that is an element
bool isFirstChild = isFirstChildElement(element);
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode()))
addStyleRelation(checkingContext, *parentElement, Style::Relation::ChildrenAffectedByFirstChildRules);
if (!isFirstChild)
break;
addStyleRelation(checkingContext, element, Style::Relation::FirstChild);
return true;
}
case CSSSelector::PseudoClass::FirstOfType: {
// first-of-type matches the first element of its type
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
auto relation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByForwardPositionalRules : Style::Relation::DescendantsAffectedByForwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, relation);
}
return isFirstOfType(element, element.tagQName());
}
case CSSSelector::PseudoClass::LastChild: {
// last-child matches the last child that is an element
bool isLastChild = isLastChildElement(element);
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
if (!parentElement->isFinishedParsingChildren())
isLastChild = false;
addStyleRelation(checkingContext, *parentElement, Style::Relation::ChildrenAffectedByLastChildRules);
}
if (!isLastChild)
break;
addStyleRelation(checkingContext, element, Style::Relation::LastChild);
return true;
}
case CSSSelector::PseudoClass::LastOfType: {
// last-of-type matches the last element of its type
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
auto relation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByBackwardPositionalRules : Style::Relation::DescendantsAffectedByBackwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, relation);
if (!parentElement->isFinishedParsingChildren())
return false;
}
return isLastOfType(element, element.tagQName());
}
case CSSSelector::PseudoClass::OnlyChild: {
bool firstChild = isFirstChildElement(element);
bool onlyChild = firstChild && isLastChildElement(element);
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
addStyleRelation(checkingContext, *parentElement, Style::Relation::ChildrenAffectedByFirstChildRules);
addStyleRelation(checkingContext, *parentElement, Style::Relation::ChildrenAffectedByLastChildRules);
if (!parentElement->isFinishedParsingChildren())
onlyChild = false;
}
if (firstChild)
addStyleRelation(checkingContext, element, Style::Relation::FirstChild);
if (onlyChild)
addStyleRelation(checkingContext, element, Style::Relation::LastChild);
return onlyChild;
}
case CSSSelector::PseudoClass::OnlyOfType: {
// FIXME: This selector is very slow.
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
auto forwardRelation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByForwardPositionalRules : Style::Relation::DescendantsAffectedByForwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, forwardRelation);
auto backwardRelation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByBackwardPositionalRules : Style::Relation::DescendantsAffectedByBackwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, backwardRelation);
if (!parentElement->isFinishedParsingChildren())
return false;
}
return isFirstOfType(element, element.tagQName()) && isLastOfType(element, element.tagQName());
}
case CSSSelector::PseudoClass::Is:
case CSSSelector::PseudoClass::Where:
case CSSSelector::PseudoClass::WebKitAny:
{
bool hasMatchedAnything = false;
MatchType localMatchType = MatchType::VirtualPseudoElementOnly;
for (const auto& subselector : *selector.selectorList()) {
LocalContext subcontext(context);
subcontext.inFunctionalPseudoClass = true;
subcontext.pseudoElementEffective = context.pseudoElementEffective;
subcontext.selector = &subselector;
subcontext.firstSelectorOfTheFragment = &subselector;
subcontext.pseudoElementIdentifier = std::nullopt;
PseudoIdSet localDynamicPseudoIdSet;
MatchResult result = matchRecursively(checkingContext, subcontext, localDynamicPseudoIdSet);
context.matchedHostPseudoClass |= subcontext.matchedHostPseudoClass;
// Pseudo elements are not valid inside :is()/:matches()
// They should also have a specificity of 0 (CSSSelector::simpleSelectorSpecificity)
if (localDynamicPseudoIdSet)
continue;
if (result.match == Match::SelectorMatches) {
if (result.matchType == MatchType::Element)
localMatchType = MatchType::Element;
hasMatchedAnything = true;
}
}
if (hasMatchedAnything)
matchType = localMatchType;
return hasMatchedAnything;
}
case CSSSelector::PseudoClass::Has: {
for (auto* hasSelector = selector.selectorList()->first(); hasSelector; hasSelector = CSSSelectorList::next(hasSelector)) {
if (matchHasPseudoClass(checkingContext, element, *hasSelector))
return true;
}
return false;
}
case CSSSelector::PseudoClass::PlaceholderShown:
if (auto* formControl = dynamicDowncast<HTMLTextFormControlElement>(element)) {
addStyleRelation(checkingContext, element, Style::Relation::Unique);
return formControl->isPlaceholderVisible();
}
return false;
case CSSSelector::PseudoClass::NthChild: {
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
auto relation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByForwardPositionalRules : Style::Relation::DescendantsAffectedByForwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, relation);
}
if (const CSSSelectorList* selectorList = selector.selectorList()) {
if (!matchSelectorList(checkingContext, context, element, *selectorList))
return false;
}
int count = 1;
if (const CSSSelectorList* selectorList = selector.selectorList()) {
for (Element* sibling = ElementTraversal::previousSibling(element); sibling; sibling = ElementTraversal::previousSibling(*sibling)) {
if (matchSelectorList(checkingContext, context, *sibling, *selectorList))
++count;
}
} else {
count += countElementsBefore(element);
addStyleRelation(checkingContext, element, Style::Relation::NthChildIndex, count);
}
if (selector.matchNth(count))
return true;
break;
}
case CSSSelector::PseudoClass::NthOfType: {
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
auto relation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByForwardPositionalRules : Style::Relation::DescendantsAffectedByForwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, relation);
}
int count = 1 + countElementsOfTypeBefore(element, element.tagQName());
if (selector.matchNth(count))
return true;
break;
}
case CSSSelector::PseudoClass::NthLastChild: {
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
if (const CSSSelectorList* selectorList = selector.selectorList()) {
if (!matchSelectorList(checkingContext, context, element, *selectorList))
return false;
addStyleRelation(checkingContext, *parentElement, Style::Relation::ChildrenAffectedByBackwardPositionalRules);
} else {
auto relation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByBackwardPositionalRules : Style::Relation::DescendantsAffectedByBackwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, relation);
}
if (!parentElement->isFinishedParsingChildren())
return false;
}
int count = 1;
if (const CSSSelectorList* selectorList = selector.selectorList()) {
for (Element* sibling = ElementTraversal::nextSibling(element); sibling; sibling = ElementTraversal::nextSibling(*sibling)) {
if (matchSelectorList(checkingContext, context, *sibling, *selectorList))
++count;
}
} else
count += countElementsAfter(element);
return selector.matchNth(count);
}
case CSSSelector::PseudoClass::NthLastOfType: {
if (auto* parentElement = dynamicDowncast<Element>(element.parentNode())) {
auto relation = context.isSubjectOrAdjacentElement ? Style::Relation::ChildrenAffectedByBackwardPositionalRules : Style::Relation::DescendantsAffectedByBackwardPositionalRules;
addStyleRelation(checkingContext, *parentElement, relation);
if (!parentElement->isFinishedParsingChildren())
return false;
}
int count = 1 + countElementsOfTypeAfter(element, element.tagQName());
return selector.matchNth(count);
}
case CSSSelector::PseudoClass::Target:
if (&element == element.document().cssTarget() || InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClass::Target))
return true;
break;
case CSSSelector::PseudoClass::Autofill:
return isAutofilled(element);
case CSSSelector::PseudoClass::WebKitAutofillAndObscured:
return isAutofilledAndObscured(element);
case CSSSelector::PseudoClass::WebKitAutofillStrongPassword:
return isAutofilledStrongPassword(element);
case CSSSelector::PseudoClass::WebKitAutofillStrongPasswordViewable:
return isAutofilledStrongPasswordViewable(element);
case CSSSelector::PseudoClass::AnyLink:
case CSSSelector::PseudoClass::Link:
// :visited and :link matches are separated later when applying the style. Here both classes match all links...
return element.isLink();
case CSSSelector::PseudoClass::Visited:
// ...except if :visited matching is disabled for ancestor/sibling matching.
// Inside functional pseudo class except for :not, :visited never matches.
if (context.inFunctionalPseudoClass)
return false;
return element.isLink() && context.visitedMatchType == VisitedMatchType::Enabled;
case CSSSelector::PseudoClass::WebKitDrag:
return element.isBeingDragged();
case CSSSelector::PseudoClass::Focus:
return matchesFocusPseudoClass(element);
case CSSSelector::PseudoClass::FocusVisible:
return matchesFocusVisiblePseudoClass(element);
case CSSSelector::PseudoClass::FocusWithin:
return matchesFocusWithinPseudoClass(element);
case CSSSelector::PseudoClass::Hover:
if (m_strictParsing || element.isLink() || canMatchHoverOrActiveInQuirksMode(context)) {
// See the comment in generateElementIsHovered() in SelectorCompiler.
if (checkingContext.resolvingMode == SelectorChecker::Mode::CollectingRulesIgnoringVirtualPseudoElements && !context.isMatchElement)
return true;
if (element.hovered() || InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClass::Hover))
return true;
}
break;
case CSSSelector::PseudoClass::Active:
if (m_strictParsing || element.isLink() || canMatchHoverOrActiveInQuirksMode(context)) {
if (element.active() || InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClass::Active))
return true;
}
break;
case CSSSelector::PseudoClass::Enabled:
return matchesEnabledPseudoClass(element);
case CSSSelector::PseudoClass::Default:
return matchesDefaultPseudoClass(element);
case CSSSelector::PseudoClass::Disabled:
return matchesDisabledPseudoClass(element);
case CSSSelector::PseudoClass::ReadOnly:
return matchesReadOnlyPseudoClass(element);
case CSSSelector::PseudoClass::ReadWrite:
return matchesReadWritePseudoClass(element);
case CSSSelector::PseudoClass::Optional:
return isOptionalFormControl(element);
case CSSSelector::PseudoClass::Required:
return isRequiredFormControl(element);
case CSSSelector::PseudoClass::Valid:
return isValid(element);
case CSSSelector::PseudoClass::Invalid:
return isInvalid(element);
case CSSSelector::PseudoClass::Checked:
return isChecked(element);
case CSSSelector::PseudoClass::Indeterminate:
return matchesIndeterminatePseudoClass(element);
case CSSSelector::PseudoClass::Root:
if (&element == element.document().documentElement())
return true;
break;
case CSSSelector::PseudoClass::Lang:
ASSERT(selector.langList() && !selector.langList()->isEmpty());
return matchesLangPseudoClass(element, *selector.langList());
#if ENABLE(FULLSCREEN_API)
case CSSSelector::PseudoClass::Fullscreen:
return matchesFullscreenPseudoClass(element);
case CSSSelector::PseudoClass::InternalAnimatingFullscreenTransition:
return matchesAnimatingFullscreenTransitionPseudoClass(element);
case CSSSelector::PseudoClass::InternalFullscreenDocument:
return matchesFullscreenDocumentPseudoClass(element);
case CSSSelector::PseudoClass::InternalInWindowFullscreen:
return matchesInWindowFullscreenPseudoClass(element);
#endif
#if ENABLE(PICTURE_IN_PICTURE_API)
case CSSSelector::PseudoClass::PictureInPicture:
return matchesPictureInPicturePseudoClass(element);
#endif
case CSSSelector::PseudoClass::InRange:
return isInRange(element);
case CSSSelector::PseudoClass::OutOfRange:
return isOutOfRange(element);
#if ENABLE(VIDEO)
case CSSSelector::PseudoClass::Future:
return matchesFutureCuePseudoClass(element);
case CSSSelector::PseudoClass::Past:
return matchesPastCuePseudoClass(element);
case CSSSelector::PseudoClass::Playing:
return matchesPlayingPseudoClass(element);
case CSSSelector::PseudoClass::Paused:
return matchesPausedPseudoClass(element);
case CSSSelector::PseudoClass::Seeking:
return matchesSeekingPseudoClass(element);
case CSSSelector::PseudoClass::Buffering:
return matchesBufferingPseudoClass(element);
case CSSSelector::PseudoClass::Stalled:
return matchesStalledPseudoClass(element);
case CSSSelector::PseudoClass::Muted:
return matchesMutedPseudoClass(element);
case CSSSelector::PseudoClass::VolumeLocked:
return matchesVolumeLockedPseudoClass(element);
#endif
case CSSSelector::PseudoClass::Scope: {
const Node* contextualReferenceNode = !checkingContext.scope ? element.document().documentElement() : checkingContext.scope.get();
return &element == contextualReferenceNode;
}
case CSSSelector::PseudoClass::State:
return element.hasCustomState(selector.argument());
case CSSSelector::PseudoClass::Host: {
if (!context.mustMatchHostPseudoClass)
return false;
if (!matchHostPseudoClass(selector, element, checkingContext))
return false;
context.matchedHostPseudoClass = true;
return true;
}
case CSSSelector::PseudoClass::Defined:
return isDefinedElement(element);
case CSSSelector::PseudoClass::WindowInactive:
return isWindowInactive(element);
case CSSSelector::PseudoClass::Horizontal:
case CSSSelector::PseudoClass::Vertical:
case CSSSelector::PseudoClass::Decrement:
case CSSSelector::PseudoClass::Increment:
case CSSSelector::PseudoClass::Start:
case CSSSelector::PseudoClass::End:
case CSSSelector::PseudoClass::DoubleButton:
case CSSSelector::PseudoClass::SingleButton:
case CSSSelector::PseudoClass::NoButton:
case CSSSelector::PseudoClass::CornerPresent:
return false;
case CSSSelector::PseudoClass::Dir:
return matchesDirPseudoClass(element, selector.argument());
#if ENABLE(ATTACHMENT_ELEMENT)
case CSSSelector::PseudoClass::AppleHasAttachment:
return hasAttachment(element);
#endif
case CSSSelector::PseudoClass::InternalHTMLDocument:
return matchesHtmlDocumentPseudoClass(element);
case CSSSelector::PseudoClass::InternalMediaDocument:
return isMediaDocument(element);
case CSSSelector::PseudoClass::PopoverOpen:
return matchesPopoverOpenPseudoClass(element);
case CSSSelector::PseudoClass::Modal:
return matchesModalPseudoClass(element);
case CSSSelector::PseudoClass::UserInvalid:
return matchesUserInvalidPseudoClass(element);
case CSSSelector::PseudoClass::UserValid:
return matchesUserValidPseudoClass(element);
case CSSSelector::PseudoClass::ActiveViewTransition:
return matchesActiveViewTransitionPseudoClass(element);
case CSSSelector::PseudoClass::ActiveViewTransitionType: {
ASSERT(selector.argumentList() && !selector.argumentList()->isEmpty());
return matchesActiveViewTransitionTypePseudoClass(element, *selector.argumentList());
}
}
return false;
}
if (selector.match() == CSSSelector::Match::PseudoElement) {
switch (selector.pseudoElement()) {
#if ENABLE(VIDEO)
case CSSSelector::PseudoElement::Cue: {
LocalContext subcontext(context);
const CSSSelector* const & selector = context.selector;
for (subcontext.selector = selector->selectorList()->first(); subcontext.selector; subcontext.selector = CSSSelectorList::next(subcontext.selector)) {
subcontext.firstSelectorOfTheFragment = subcontext.selector;
subcontext.inFunctionalPseudoClass = true;
subcontext.pseudoElementEffective = false;
PseudoIdSet ignoredDynamicPseudo;
if (matchRecursively(checkingContext, subcontext, ignoredDynamicPseudo).match == Match::SelectorMatches)
return true;
}
return false;
}
#endif
case CSSSelector::PseudoElement::Slotted: {
if (!context.element->assignedSlot())
return false;
// ::slotted matches after flattening so it can't match an active <slot>.
if (is<HTMLSlotElement>(*context.element) && context.element->containingShadowRoot())
return false;
auto* subselector = context.selector->selectorList()->first();
LocalContext subcontext(context);
subcontext.selector = subselector;
subcontext.firstSelectorOfTheFragment = subselector;
subcontext.pseudoElementEffective = false;
subcontext.inFunctionalPseudoClass = true;
PseudoIdSet ignoredDynamicPseudo;
return matchRecursively(checkingContext, subcontext, ignoredDynamicPseudo).match == Match::SelectorMatches;
}
case CSSSelector::PseudoElement::Part: {
auto appendTranslatedPartNameToRuleScope = [&](auto& translatedPartNames, AtomString partName) {
if (checkingContext.styleScopeOrdinal == Style::ScopeOrdinal::Element) {
translatedPartNames.append(partName);
return;
}
auto* ruleScopeHost = Style::hostForScopeOrdinal(*context.element, checkingContext.styleScopeOrdinal);
Vector<AtomString, 1> mappedNames { partName };
for (auto* shadowRoot = element.containingShadowRoot(); shadowRoot; shadowRoot = shadowRoot->host()->containingShadowRoot()) {
// Apply mappings up to the scope the rules are coming from.
if (shadowRoot->host() == ruleScopeHost)
break;
Vector<AtomString, 1> newMappedNames;
for (auto& name : mappedNames)
newMappedNames.appendVector(shadowRoot->partMappings().get(name));
mappedNames = newMappedNames;
if (mappedNames.isEmpty())
break;
}
translatedPartNames.appendVector(mappedNames);
};
Vector<AtomString, 4> translatedPartNames;
for (auto& partName : element.partNames())
appendTranslatedPartNameToRuleScope(translatedPartNames, partName);
ASSERT(selector.argumentList());
for (auto& part : *selector.argumentList()) {
if (!translatedPartNames.contains(part))
return false;
}
return true;
}
case CSSSelector::PseudoElement::Highlight:
// Always matches when not specifically requested so it gets added to the pseudoIdSet.
if (checkingContext.pseudoId == PseudoId::None)
return true;
if (checkingContext.pseudoId != PseudoId::Highlight || !selector.argumentList())
return false;
return selector.argumentList()->first() == checkingContext.pseudoElementNameArgument;
case CSSSelector::PseudoElement::ViewTransitionGroup:
case CSSSelector::PseudoElement::ViewTransitionImagePair:
case CSSSelector::PseudoElement::ViewTransitionOld:
case CSSSelector::PseudoElement::ViewTransitionNew: {
// Always matches when not specifically requested so it gets added to the pseudoIdSet.
if (checkingContext.pseudoId == PseudoId::None)
return true;
if (checkingContext.pseudoId != CSSSelector::pseudoId(selector.pseudoElement()) || !selector.argumentList())
return false;
auto& list = *selector.argumentList();
auto& name = list.first();
if (name != starAtom() && name != checkingContext.pseudoElementNameArgument)
return false;
if (list.size() == 1)
return true;
return std::ranges::all_of(list.span().subspan(1),
[&](const AtomString& classSelector) {
return checkingContext.classList.contains(classSelector);
}
);
}
default:
return true;
}
}
return true;
}
bool SelectorChecker::matchSelectorList(CheckingContext& checkingContext, const LocalContext& context, const Element& element, const CSSSelectorList& selectorList) const
{
bool hasMatchedAnything = false;
for (const CSSSelector* subselector = selectorList.first(); subselector; subselector = CSSSelectorList::next(subselector)) {
LocalContext subcontext(context);
subcontext.element = &element;
subcontext.selector = subselector;
subcontext.inFunctionalPseudoClass = true;
subcontext.pseudoElementEffective = false;
subcontext.firstSelectorOfTheFragment = subselector;
PseudoIdSet ignoreDynamicPseudo;
if (matchRecursively(checkingContext, subcontext, ignoreDynamicPseudo).match == Match::SelectorMatches) {
ASSERT(!ignoreDynamicPseudo);
hasMatchedAnything = true;
}
}
return hasMatchedAnything;
}
bool SelectorChecker::matchHasPseudoClass(CheckingContext& checkingContext, const Element& element, const CSSSelector& hasSelector) const
{
// :has() should never be nested with another :has()
// This is generally discarded at parsing time, but
// with Nesting some selector can become "contextually invalid".
if (checkingContext.disallowHasPseudoClass)
return false;
auto matchElement = Style::computeHasPseudoClassMatchElement(hasSelector);
auto canMatch = [&] {
switch (matchElement) {
case Style::MatchElement::HasChild:
case Style::MatchElement::HasDescendant:
return !!element.firstElementChild();
case Style::MatchElement::HasSibling:
case Style::MatchElement::HasSiblingDescendant:
return !!element.nextElementSibling();
default:
return true;
};
};
// See if there are any elements that this :has() selector could match.
if (!canMatch())
return false;
auto* cache = checkingContext.selectorMatchingState ? &checkingContext.selectorMatchingState->hasPseudoClassMatchCache : nullptr;
auto checkForCachedMatch = [&]() -> std::optional<bool> {
if (!cache)
return { };
switch (cache->get(Style::makeHasPseudoClassCacheKey(element, hasSelector))) {
case Style::HasPseudoClassMatch::Matches:
return true;
case Style::HasPseudoClassMatch::Fails:
case Style::HasPseudoClassMatch::FailsSubtree:
return false;
case Style::HasPseudoClassMatch::None:
break;
}
return { };
};
// See if we know the result already.
if (auto match = checkForCachedMatch())
return *match;
auto filterForElement = [&]() -> Style::HasSelectorFilter* {
if (!checkingContext.selectorMatchingState)
return nullptr;
auto type = Style::HasSelectorFilter::typeForMatchElement(matchElement);
if (!type)
return nullptr;
auto& filtersMap = checkingContext.selectorMatchingState->hasPseudoClassSelectorFilters;
auto addResult = filtersMap.add(Style::makeHasPseudoClassFilterKey(element, *type), std::unique_ptr<Style::HasSelectorFilter>());
// Only build a filter if the same element gets checked second time with a different selector (misses the match cache).
if (addResult.isNewEntry)
return nullptr;
if (!addResult.iterator->value)
addResult.iterator->value = makeUnique<Style::HasSelectorFilter>(element, *type);
return addResult.iterator->value.get();
};
// Check if the bloom filter rejects this selector
if (auto* filter = filterForElement()) {
if (filter->reject(hasSelector))
return false;
}
CheckingContext hasCheckingContext(SelectorChecker::Mode::ResolvingStyle);
hasCheckingContext.scope = checkingContext.scope;
hasCheckingContext.hasScope = &element;
hasCheckingContext.disallowHasPseudoClass = true;
bool matchedInsideScope = false;
auto checkRelative = [&](auto& elementToCheck) {
LocalContext hasContext(hasSelector, elementToCheck, VisitedMatchType::Disabled, std::nullopt);
hasContext.inFunctionalPseudoClass = true;
hasContext.pseudoElementEffective = false;
PseudoIdSet ignorePseudoElements;
auto result = matchRecursively(hasCheckingContext, hasContext, ignorePseudoElements).match == Match::SelectorMatches;
if (hasCheckingContext.matchedInsideScope)
matchedInsideScope = true;
return result;
};
auto checkDescendants = [&](const Element& descendantRoot) {
for (auto it = descendantsOfType<Element>(descendantRoot).begin(); it;) {
auto& descendant = *it;
if (checkRelative(descendant))
return true;
if (cache && descendant.firstElementChild()) {
auto key = Style::makeHasPseudoClassCacheKey(descendant, hasSelector);
if (cache->get(key) == Style::HasPseudoClassMatch::FailsSubtree) {
it.traverseNextSkippingChildren();
continue;
}
}
it.traverseNext();
}
return false;
};
auto match = [&] {
switch (matchElement) {
// :has(> .child)
case Style::MatchElement::HasChild:
for (auto& child : childrenOfType<Element>(element)) {
if (checkRelative(child))
return true;
}
break;
// :has(.descendant)
case Style::MatchElement::HasDescendant: {
if (cache) {
// See if we already know this descendant selector doesn't match in this subtree.
for (auto* ancestor = element.parentElement(); ancestor; ancestor = ancestor->parentElement()) {
auto key = Style::makeHasPseudoClassCacheKey(*ancestor, hasSelector);
if (cache->get(key) == Style::HasPseudoClassMatch::FailsSubtree)
return false;
}
}
if (checkDescendants(element))
return true;
break;
}
// FIXME: Add a separate case for adjacent combinator.
// :has(+ .sibling)
// :has(~ .sibling)
case Style::MatchElement::HasSibling:
for (auto* sibling = element.nextElementSibling(); sibling; sibling = sibling->nextElementSibling()) {
if (checkRelative(*sibling))
return true;
}
break;
// FIXME: Add a separate case for adjacent combinator.
// :has(+ .sibling .descendant)
// :has(~ .sibling .descendant)
case Style::MatchElement::HasSiblingDescendant:
for (auto* sibling = element.nextElementSibling(); sibling; sibling = sibling->nextElementSibling()) {
if (checkDescendants(*sibling))
return true;
}
break;
default:
ASSERT_NOT_REACHED();
break;
}
return false;
};
auto result = match();
auto matchTypeForCache = [&] {
if (result)
return Style::HasPseudoClassMatch::Matches;
if (matchedInsideScope)
return Style::HasPseudoClassMatch::Fails;
return Style::HasPseudoClassMatch::FailsSubtree;
};
if (cache)
cache->add(Style::makeHasPseudoClassCacheKey(element, hasSelector), matchTypeForCache());
auto forwardStyleRelation = [&](const Style::Relation& relation) {
switch (relation.type) {
case Style::Relation::ChildrenAffectedByForwardPositionalRules:
case Style::Relation::ChildrenAffectedByBackwardPositionalRules:
checkingContext.styleRelations.append(Style::Relation { *relation.element, Style::Relation::AffectedByHasWithPositionalPseudoClass });
return;
case Style::Relation::ChildrenAffectedByFirstChildRules:
case Style::Relation::ChildrenAffectedByLastChildRules:
checkingContext.styleRelations.append(relation);
return;
case Style::Relation::AffectedByEmpty:
case Style::Relation::AffectedByPreviousSibling:
case Style::Relation::DescendantsAffectedByPreviousSibling:
case Style::Relation::AffectsNextSibling:
case Style::Relation::DescendantsAffectedByForwardPositionalRules:
case Style::Relation::DescendantsAffectedByBackwardPositionalRules:
case Style::Relation::FirstChild:
case Style::Relation::LastChild:
case Style::Relation::NthChildIndex:
case Style::Relation::Unique:
return;
case Style::Relation::AffectedByHasWithPositionalPseudoClass:
ASSERT_NOT_REACHED();
return;
}
};
for (auto& relation : hasCheckingContext.styleRelations)
forwardStyleRelation(relation);
return result;
}
bool SelectorChecker::checkScrollbarPseudoClass(const CheckingContext& checkingContext, const Element& element, const CSSSelector& selector) const
{
ASSERT(selector.match() == CSSSelector::Match::PseudoClass);
switch (selector.pseudoClass()) {
case CSSSelector::PseudoClass::WindowInactive:
return isWindowInactive(element);
case CSSSelector::PseudoClass::Enabled:
return scrollbarMatchesEnabledPseudoClass(checkingContext);
case CSSSelector::PseudoClass::Disabled:
return scrollbarMatchesDisabledPseudoClass(checkingContext);
case CSSSelector::PseudoClass::Hover:
return scrollbarMatchesHoverPseudoClass(checkingContext);
case CSSSelector::PseudoClass::Active:
return scrollbarMatchesActivePseudoClass(checkingContext);
case CSSSelector::PseudoClass::Horizontal:
return scrollbarMatchesHorizontalPseudoClass(checkingContext);
case CSSSelector::PseudoClass::Vertical:
return scrollbarMatchesVerticalPseudoClass(checkingContext);
case CSSSelector::PseudoClass::Decrement:
return scrollbarMatchesDecrementPseudoClass(checkingContext);
case CSSSelector::PseudoClass::Increment:
return scrollbarMatchesIncrementPseudoClass(checkingContext);
case CSSSelector::PseudoClass::Start:
return scrollbarMatchesStartPseudoClass(checkingContext);
case CSSSelector::PseudoClass::End:
return scrollbarMatchesEndPseudoClass(checkingContext);
case CSSSelector::PseudoClass::DoubleButton:
return scrollbarMatchesDoubleButtonPseudoClass(checkingContext);
case CSSSelector::PseudoClass::SingleButton:
return scrollbarMatchesSingleButtonPseudoClass(checkingContext);
case CSSSelector::PseudoClass::NoButton:
return scrollbarMatchesNoButtonPseudoClass(checkingContext);
case CSSSelector::PseudoClass::CornerPresent:
return scrollbarMatchesCornerPresentPseudoClass(checkingContext);
default:
return false;
}
}
bool SelectorChecker::checkViewTransitionPseudoClass(const CheckingContext& checkingContext, const Element& element, const CSSSelector& selector) const
{
ASSERT(selector.match() == CSSSelector::Match::PseudoClass);
if (selector.pseudoClass() != CSSSelector::PseudoClass::OnlyChild)
return false;
switch (checkingContext.pseudoId) {
case PseudoId::ViewTransition:
return false;
case PseudoId::ViewTransitionGroup: {
if (RefPtr activeViewTransition = element.document().activeViewTransition()) {
if (activeViewTransition->namedElements().find(checkingContext.pseudoElementNameArgument))
return activeViewTransition->namedElements().size() == 1;
}
return false;
}
case PseudoId::ViewTransitionImagePair:
return true;
case PseudoId::ViewTransitionOld: {
if (RefPtr activeViewTransition = element.document().activeViewTransition()) {
if (auto* capturedElement = activeViewTransition->namedElements().find(checkingContext.pseudoElementNameArgument))
return !capturedElement->newElement;
}
return false;
}
case PseudoId::ViewTransitionNew: {
if (RefPtr activeViewTransition = element.document().activeViewTransition()) {
if (auto* capturedElement = activeViewTransition->namedElements().find(checkingContext.pseudoElementNameArgument))
return !capturedElement->oldImage;
}
return false;
}
default:
return false;
}
}
unsigned SelectorChecker::determineLinkMatchType(const CSSSelector* selector)
{
unsigned linkMatchType = MatchAll;
// Statically determine if this selector will match a link in visited, unvisited or any state, or never.
// :visited never matches other elements than the innermost link element.
for (; selector; selector = selector->tagHistory()) {
if (selector->match() == CSSSelector::Match::PseudoClass) {
switch (selector->pseudoClass()) {
case CSSSelector::PseudoClass::Link:
linkMatchType &= ~SelectorChecker::MatchVisited;
break;
case CSSSelector::PseudoClass::Visited:
linkMatchType &= ~SelectorChecker::MatchLink;
break;
default:
break;
}
}
auto relation = selector->relation();
if (relation == CSSSelector::Relation::Subselector)
continue;
if (!selector->hasDescendantOrChildRelation())
return linkMatchType;
if (linkMatchType != MatchAll)
return linkMatchType;
}
return linkMatchType;
}
}
|