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
|
/*
* Copyright (C) 2014-2016 Apple Inc. All rights reserved.
* Copyright (C) 2014 Dhi Aurrahman <diorahman@rockybars.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "FocusController.h"
#include "FrameSelection.h"
#include "HTMLDialogElement.h"
#include "HTMLFrameElement.h"
#include "HTMLIFrameElement.h"
#include "HTMLImageElement.h"
#include "HTMLInputElement.h"
#include "HTMLOptionElement.h"
#include "InspectorInstrumentation.h"
#include "LocalFrame.h"
#include "Page.h"
#include "SelectorChecker.h"
#include "Settings.h"
#include "ShadowRoot.h"
#include "ViewTransition.h"
#include <wtf/Compiler.h>
#if ENABLE(ATTACHMENT_ELEMENT)
#include "HTMLAttachmentElement.h"
#endif
#if ENABLE(FULLSCREEN_API)
#include "DocumentOrShadowRootFullscreen.h"
#include "FullscreenManager.h"
#endif
#if ENABLE(VIDEO)
#include "HTMLMediaElement.h"
#include "WebVTTElement.h"
#endif
#if ENABLE(PICTURE_IN_PICTURE_API)
#include "HTMLVideoElement.h"
#endif
namespace WebCore {
ALWAYS_INLINE bool isAutofilled(const Element& element)
{
auto* inputElement = dynamicDowncast<HTMLInputElement>(element);
return inputElement && inputElement->autofilled();
}
ALWAYS_INLINE bool isAutofilledStrongPassword(const Element& element)
{
auto* inputElement = dynamicDowncast<HTMLInputElement>(element);
return inputElement && inputElement->autofilled() && inputElement->hasAutofillStrongPasswordButton();
}
ALWAYS_INLINE bool isAutofilledStrongPasswordViewable(const Element& element)
{
auto* inputElement = dynamicDowncast<HTMLInputElement>(element);
return inputElement && inputElement->autofilledAndViewable();
}
ALWAYS_INLINE bool isAutofilledAndObscured(const Element& element)
{
auto* inputElement = dynamicDowncast<HTMLInputElement>(element);
return inputElement && inputElement->autofilledAndObscured();
}
ALWAYS_INLINE bool matchesDefaultPseudoClass(const Element& element)
{
return element.matchesDefaultPseudoClass();
}
// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
ALWAYS_INLINE bool matchesDisabledPseudoClass(const Element& element)
{
auto* htmlElement = dynamicDowncast<HTMLElement>(element);
return htmlElement && htmlElement->isActuallyDisabled();
}
// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
ALWAYS_INLINE bool matchesEnabledPseudoClass(const Element& element)
{
auto* htmlElement = dynamicDowncast<HTMLElement>(element);
return htmlElement && htmlElement->canBeActuallyDisabled() && !htmlElement->isActuallyDisabled();
}
// https://dom.spec.whatwg.org/#concept-element-defined
ALWAYS_INLINE bool isDefinedElement(const Element& element)
{
return element.isDefinedCustomElement() || element.isUncustomizedCustomElement();
}
ALWAYS_INLINE bool isMediaDocument(const Element& element)
{
return element.document().isMediaDocument();
}
ALWAYS_INLINE bool isChecked(const Element& element)
{
if (auto* inputElement = dynamicDowncast<HTMLInputElement>(element))
return inputElement->matchesCheckedPseudoClass();
if (auto* option = dynamicDowncast<HTMLOptionElement>(element))
return const_cast<HTMLOptionElement&>(*option).selected(AllowStyleInvalidation::No);
return false;
}
ALWAYS_INLINE bool isInRange(const Element& element)
{
return element.isInRange();
}
ALWAYS_INLINE bool isOutOfRange(const Element& element)
{
return element.isOutOfRange();
}
ALWAYS_INLINE bool isInvalid(const Element& element)
{
return element.matchesInvalidPseudoClass();
}
ALWAYS_INLINE bool isOptionalFormControl(const Element& element)
{
return element.isOptionalFormControl();
}
ALWAYS_INLINE bool isRequiredFormControl(const Element& element)
{
return element.isRequiredFormControl();
}
ALWAYS_INLINE bool isValid(const Element& element)
{
return element.matchesValidPseudoClass();
}
ALWAYS_INLINE bool isWindowInactive(const Element& element)
{
auto* page = element.document().page();
if (!page)
return false;
return !page->focusController().isActive();
}
#if ENABLE(ATTACHMENT_ELEMENT)
ALWAYS_INLINE bool hasAttachment(const Element& element)
{
auto* imageElement = dynamicDowncast<HTMLImageElement>(element);
return imageElement && imageElement->attachmentElement();
}
#endif
ALWAYS_INLINE bool containslanguageSubtagMatchingRange(StringView language, StringView range, unsigned languageLength, unsigned& position)
{
unsigned languageSubtagsStartIndex = position;
unsigned languageSubtagsEndIndex = languageLength;
bool isAsteriskRange = range == "*"_s;
do {
if (languageSubtagsStartIndex > 0)
languageSubtagsStartIndex += 1;
languageSubtagsEndIndex = std::min<unsigned>(language.find('-', languageSubtagsStartIndex), languageLength);
if (languageSubtagsStartIndex > languageSubtagsEndIndex)
return false;
StringView languageSubtag = language.substring(languageSubtagsStartIndex, languageSubtagsEndIndex - languageSubtagsStartIndex);
bool isEqual = equalIgnoringASCIICase(range, languageSubtag);
if (!isAsteriskRange) {
if ((!isEqual && !languageSubtagsStartIndex) || (languageSubtag.length() == 1 && languageSubtagsStartIndex > 0))
return false;
}
languageSubtagsStartIndex = languageSubtagsEndIndex;
if (isEqual || isAsteriskRange) {
position = languageSubtagsStartIndex;
return true;
}
} while (languageSubtagsStartIndex < languageLength);
return false;
}
ALWAYS_INLINE bool matchesLangPseudoClass(const Element& element, const FixedVector<PossiblyQuotedIdentifier>& langList)
{
AtomString language;
#if ENABLE(VIDEO)
if (auto* vttElement = dynamicDowncast<WebVTTElement>(element))
language = vttElement->language();
else
#endif
language = element.effectiveLang();
if (language.isEmpty())
return false;
// Implement basic and extended filterings of given language tags as specified in www.ietf.org/rfc/rfc4647.txt.
StringView languageStringView = language;
unsigned languageLength = language.length();
for (auto& range : langList) {
StringView rangeStringView = range.identifier;
if (rangeStringView.isEmpty())
continue;
if (rangeStringView == "*"_s)
return true;
if (equalIgnoringASCIICase(languageStringView, rangeStringView) && !languageStringView.contains('-'))
return true;
unsigned rangeLength = rangeStringView.length();
unsigned rangeSubtagsStartIndex = 0;
unsigned lastMatchedLanguageSubtagIndex = 0;
bool matchedRange = true;
do {
if (rangeSubtagsStartIndex > 0)
rangeSubtagsStartIndex += 1;
if (rangeSubtagsStartIndex > languageLength)
return false;
unsigned rangeSubtagsEndIndex = std::min<unsigned>(rangeStringView.find('-', rangeSubtagsStartIndex), rangeLength);
StringView rangeSubtag = rangeStringView.substring(rangeSubtagsStartIndex, rangeSubtagsEndIndex - rangeSubtagsStartIndex);
if (!containslanguageSubtagMatchingRange(languageStringView, rangeSubtag, languageLength, lastMatchedLanguageSubtagIndex)) {
matchedRange = false;
break;
}
rangeSubtagsStartIndex = rangeSubtagsEndIndex;
} while (rangeSubtagsStartIndex < rangeLength);
if (matchedRange)
return true;
}
return false;
}
ALWAYS_INLINE bool matchesDirPseudoClass(const Element& element, const AtomString& argument)
{
switch (element.effectiveTextDirection()) {
case TextDirection::LTR:
return equalIgnoringASCIICase(argument, "ltr"_s);
case TextDirection::RTL:
return equalIgnoringASCIICase(argument, "rtl"_s);
}
return false;
}
ALWAYS_INLINE bool matchesReadOnlyPseudoClass(const Element& element)
{
return !element.matchesReadWritePseudoClass();
}
ALWAYS_INLINE bool matchesReadWritePseudoClass(const Element& element)
{
return element.matchesReadWritePseudoClass();
}
ALWAYS_INLINE bool matchesIndeterminatePseudoClass(const Element& element)
{
return element.matchesIndeterminatePseudoClass();
}
ALWAYS_INLINE bool scrollbarMatchesEnabledPseudoClass(const SelectorChecker::CheckingContext& context)
{
return context.scrollbarState && context.scrollbarState->enabled;
}
ALWAYS_INLINE bool scrollbarMatchesDisabledPseudoClass(const SelectorChecker::CheckingContext& context)
{
return context.scrollbarState && !context.scrollbarState->enabled;
}
ALWAYS_INLINE bool scrollbarMatchesHoverPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
auto hoveredPart = context.scrollbarState->hoveredPart;
if (scrollbarPart == ScrollbarBGPart)
return hoveredPart != NoPart;
if (scrollbarPart == TrackBGPart)
return hoveredPart == BackTrackPart || hoveredPart == ForwardTrackPart || hoveredPart == ThumbPart;
return scrollbarPart == hoveredPart;
}
ALWAYS_INLINE bool scrollbarMatchesActivePseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
auto pressedPart = context.scrollbarState->pressedPart;
if (scrollbarPart == ScrollbarBGPart)
return pressedPart != NoPart;
if (scrollbarPart == TrackBGPart)
return pressedPart == BackTrackPart || pressedPart == ForwardTrackPart || pressedPart == ThumbPart;
return scrollbarPart == pressedPart;
}
ALWAYS_INLINE bool scrollbarMatchesHorizontalPseudoClass(const SelectorChecker::CheckingContext& context)
{
return context.scrollbarState && context.scrollbarState->orientation == ScrollbarOrientation::Horizontal;
}
ALWAYS_INLINE bool scrollbarMatchesVerticalPseudoClass(const SelectorChecker::CheckingContext& context)
{
return context.scrollbarState && context.scrollbarState->orientation == ScrollbarOrientation::Vertical;
}
ALWAYS_INLINE bool scrollbarMatchesDecrementPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
return scrollbarPart == BackButtonStartPart || scrollbarPart == BackButtonEndPart || scrollbarPart == BackTrackPart;
}
ALWAYS_INLINE bool scrollbarMatchesIncrementPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
return scrollbarPart == ForwardButtonStartPart || scrollbarPart == ForwardButtonEndPart || scrollbarPart == ForwardTrackPart;
}
ALWAYS_INLINE bool scrollbarMatchesStartPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
return scrollbarPart == BackButtonStartPart || scrollbarPart == ForwardButtonStartPart || scrollbarPart == BackTrackPart;
}
ALWAYS_INLINE bool scrollbarMatchesEndPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
return scrollbarPart == BackButtonEndPart || scrollbarPart == ForwardButtonEndPart || scrollbarPart == ForwardTrackPart;
}
ALWAYS_INLINE bool scrollbarMatchesDoubleButtonPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
auto buttonsPlacement = context.scrollbarState->buttonsPlacement;
if (scrollbarPart == BackButtonStartPart || scrollbarPart == ForwardButtonStartPart || scrollbarPart == BackTrackPart)
return buttonsPlacement == ScrollbarButtonsDoubleStart || buttonsPlacement == ScrollbarButtonsDoubleBoth;
if (scrollbarPart == BackButtonEndPart || scrollbarPart == ForwardButtonEndPart || scrollbarPart == ForwardTrackPart)
return buttonsPlacement == ScrollbarButtonsDoubleEnd || buttonsPlacement == ScrollbarButtonsDoubleBoth;
return false;
}
ALWAYS_INLINE bool scrollbarMatchesSingleButtonPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
auto buttonsPlacement = context.scrollbarState->buttonsPlacement;
if (scrollbarPart == BackButtonStartPart || scrollbarPart == ForwardButtonEndPart || scrollbarPart == BackTrackPart || scrollbarPart == ForwardTrackPart)
return buttonsPlacement == ScrollbarButtonsSingle;
return false;
}
ALWAYS_INLINE bool scrollbarMatchesNoButtonPseudoClass(const SelectorChecker::CheckingContext& context)
{
if (!context.scrollbarState)
return false;
auto scrollbarPart = context.scrollbarState->scrollbarPart;
auto buttonsPlacement = context.scrollbarState->buttonsPlacement;
if (scrollbarPart == BackTrackPart)
return buttonsPlacement == ScrollbarButtonsNone || buttonsPlacement == ScrollbarButtonsDoubleEnd;
if (scrollbarPart == ForwardTrackPart)
return buttonsPlacement == ScrollbarButtonsNone || buttonsPlacement == ScrollbarButtonsDoubleStart;
return false;
}
ALWAYS_INLINE bool scrollbarMatchesCornerPresentPseudoClass(const SelectorChecker::CheckingContext& context)
{
return context.scrollbarState && context.scrollbarState->scrollCornerIsVisible;
}
#if ENABLE(FULLSCREEN_API)
ALWAYS_INLINE bool matchesFullscreenPseudoClass(const Element& element)
{
if (element.hasFullscreenFlag())
return true;
if (element.shadowRoot())
return DocumentOrShadowRootFullscreen::fullscreenElement(element.document()) == &element;
return false;
}
ALWAYS_INLINE bool matchesAnimatingFullscreenTransitionPseudoClass(const Element& element)
{
CheckedPtr fullscreenManager = element.document().fullscreenManagerIfExists();
if (!fullscreenManager || &element != fullscreenManager->fullscreenElement())
return false;
return fullscreenManager->isAnimatingFullscreen();
}
ALWAYS_INLINE bool matchesFullscreenDocumentPseudoClass(const Element& element)
{
// While a Document is in the fullscreen state, the 'full-screen-document' pseudoclass applies
// to all elements of that Document.
CheckedPtr fullscreenManager = element.document().fullscreenManagerIfExists();
return fullscreenManager && fullscreenManager->fullscreenElement();
}
ALWAYS_INLINE bool matchesInWindowFullscreenPseudoClass(const Element& element)
{
#if ENABLE(VIDEO)
if (&element != element.document().fullscreenManager().fullscreenElement())
return false;
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && mediaElement->fullscreenMode() == HTMLMediaElementEnums::VideoFullscreenModeInWindow;
#else
UNUSED_PARAM(element);
return false;
#endif
}
#endif
#if ENABLE(PICTURE_IN_PICTURE_API)
ALWAYS_INLINE bool matchesPictureInPicturePseudoClass(const Element& element)
{
return is<HTMLVideoElement>(element) && element.document().pictureInPictureElement() == &element;
}
#endif
#if ENABLE(VIDEO)
ALWAYS_INLINE bool matchesFutureCuePseudoClass(const Element& element)
{
if (auto* webVTTElement = dynamicDowncast<WebVTTElement>(element))
return !webVTTElement->isPastNode();
return false;
}
ALWAYS_INLINE bool matchesPastCuePseudoClass(const Element& element)
{
if (auto* vttElement = dynamicDowncast<WebVTTElement>(element))
return vttElement->isPastNode();
return false;
}
ALWAYS_INLINE bool matchesPlayingPseudoClass(const Element& element)
{
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && !mediaElement->paused();
}
ALWAYS_INLINE bool matchesPausedPseudoClass(const Element& element)
{
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && mediaElement->paused();
}
ALWAYS_INLINE bool matchesSeekingPseudoClass(const Element& element)
{
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && mediaElement->seeking();
}
ALWAYS_INLINE bool matchesBufferingPseudoClass(const Element& element)
{
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && mediaElement->buffering();
}
ALWAYS_INLINE bool matchesStalledPseudoClass(const Element& element)
{
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && mediaElement->stalled();
}
ALWAYS_INLINE bool matchesMutedPseudoClass(const Element& element)
{
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && mediaElement->muted();
}
ALWAYS_INLINE bool matchesVolumeLockedPseudoClass(const Element& element)
{
auto* mediaElement = dynamicDowncast<HTMLMediaElement>(element);
return mediaElement && mediaElement->volumeLocked();
}
#endif
ALWAYS_INLINE bool isFrameFocused(const Element& element)
{
return element.document().frame() && element.document().frame()->selection().isFocusedAndActive();
}
ALWAYS_INLINE bool matchesLegacyDirectFocusPseudoClass(const Element& element)
{
if (InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClass::Focus))
return true;
return element.focused() && isFrameFocused(element);
}
ALWAYS_INLINE bool doesShadowTreeContainFocusedElement(const Element& element)
{
auto* shadowRoot = element.shadowRoot();
return shadowRoot && shadowRoot->containsFocusedElement();
}
ALWAYS_INLINE bool matchesFocusPseudoClass(const Element& element)
{
if (InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClass::Focus))
return true;
return (element.focused() || doesShadowTreeContainFocusedElement(element)) && isFrameFocused(element);
}
ALWAYS_INLINE bool matchesFocusVisiblePseudoClass(const Element& element)
{
if (InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClass::FocusVisible))
return true;
return element.hasFocusVisible() && isFrameFocused(element);
}
ALWAYS_INLINE bool matchesFocusWithinPseudoClass(const Element& element)
{
if (InspectorInstrumentation::forcePseudoState(element, CSSSelector::PseudoClass::FocusWithin))
return true;
return element.hasFocusWithin() && isFrameFocused(element);
}
ALWAYS_INLINE bool matchesHtmlDocumentPseudoClass(const Element& element)
{
return element.document().isHTMLDocument();
}
ALWAYS_INLINE bool matchesModalPseudoClass(const Element& element)
{
if (auto* dialog = dynamicDowncast<HTMLDialogElement>(element))
return dialog->isModal();
#if ENABLE(FULLSCREEN_API)
return element.hasFullscreenFlag();
#else
return false;
#endif
}
ALWAYS_INLINE bool matchesPopoverOpenPseudoClass(const Element& element)
{
return element.isPopoverShowing();
}
ALWAYS_INLINE bool matchesUserInvalidPseudoClass(const Element& element)
{
return element.matchesUserInvalidPseudoClass();
}
ALWAYS_INLINE bool matchesUserValidPseudoClass(const Element& element)
{
return element.matchesUserValidPseudoClass();
}
ALWAYS_INLINE bool matchesActiveViewTransitionPseudoClass(const Element& element)
{
if (&element != element.document().documentElement())
return false;
return !!element.document().activeViewTransition();
}
} // namespace WebCore
|