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
|
/*
* Copyright (C) 2012 Google Inc. All rights reserved.
* Copyright (C) 2013-2023 Apple Inc. All rights reserved.
*
* 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 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 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 "ActivityState.h"
#include "CSSComputedStyleDeclaration.h"
#include "ContextDestructionObserver.h"
#include "Cookie.h"
#include "DocumentMarker.h"
#include "EpochTimeStamp.h"
#include "EventTrackingRegions.h"
#include "ExceptionOr.h"
#include "HEVCUtilities.h"
#include "IDLTypes.h"
#include "OrientationNotifier.h"
#include "PageConsoleClient.h"
#include "RealtimeMediaSource.h"
#include "SleepDisabler.h"
#include "TextIndicator.h"
#include "VP9Utilities.h"
#include <JavaScriptCore/Forward.h>
#if ENABLE(VIDEO)
#include "MediaElementSession.h"
#include "MediaUniqueIdentifier.h"
#endif
#if USE(AUDIO_SESSION)
#include "AudioSession.h"
#endif
#if USE(APPLE_INTERNAL_SDK)
#include "InternalsAdditions.h"
#endif
OBJC_CLASS DDScannerResult;
OBJC_CLASS VKCImageAnalysis;
namespace WebCore {
class AbstractRange;
class AnimationTimeline;
class ArtworkImageLoader;
class AudioContext;
class AudioTrack;
class BaseAudioContext;
class Blob;
class CacheStorageConnection;
class CachedResource;
class CaptionUserPreferencesTestingModeToken;
class DOMPointReadOnly;
class DOMRect;
class DOMRectList;
class DOMRectReadOnly;
class DOMURL;
class LocalDOMWindow;
class Document;
class Element;
class EventListener;
class ExtendableEvent;
class FetchRequest;
class FetchResponse;
class File;
class GCObservation;
class HTMLAnchorElement;
class HTMLAttachmentElement;
class HTMLCanvasElement;
class HTMLImageElement;
class HTMLInputElement;
class HTMLLinkElement;
class HTMLMediaElement;
class HTMLPictureElement;
class HTMLSelectElement;
class HTMLVideoElement;
class ImageData;
class InspectorStubFrontend;
class InternalsMapLike;
class InternalSettings;
class InternalsSetLike;
class LocalFrame;
class Location;
class MallocStatistics;
class MediaStream;
class MediaStreamTrack;
class MemoryInfo;
class MessagePort;
class MockCDMFactory;
class MockContentFilterSettings;
class MockPageOverlay;
class MockPaymentCoordinator;
class NodeList;
class Page;
class RTCPeerConnection;
class ReadableStream;
class Range;
class RenderedDocumentMarker;
class SVGSVGElement;
class ScrollableArea;
class SerializedScriptValue;
class SharedBuffer;
class SourceBuffer;
class SpeechSynthesisUtterance;
class StaticRange;
class StringCallback;
class StyleSheet;
class TextIterator;
class TextTrack;
class TimeRanges;
class TypeConversions;
class UnsuspendableActiveDOMObject;
class VoidCallback;
class WebAnimation;
class WebGLRenderingContext;
class WindowProxy;
class XMLHttpRequest;
#if ENABLE(ENCRYPTED_MEDIA)
class MediaKeys;
class MediaKeySession;
#endif
#if ENABLE(VIDEO)
class TextTrackCueGeneric;
class VTTCue;
#endif
#if ENABLE(SERVICE_WORKER)
class PushSubscription;
class ServiceWorker;
#endif
#if ENABLE(WEB_RTC)
class RTCRtpSFrameTransform;
#endif
#if ENABLE(WEBXR)
class WebXRTest;
#endif
#if ENABLE(MEDIA_SESSION)
class MediaSession;
struct MediaSessionActionDetails;
#if ENABLE(MEDIA_SESSION_COORDINATOR)
class MediaSessionCoordinator;
class MockMediaSessionCoordinator;
#endif
#endif
#if ENABLE(ARKIT_INLINE_PREVIEW_MAC)
class HTMLModelElement;
#endif
#if ENABLE(SPEECH_SYNTHESIS)
class PlatformSpeechSynthesizerMock;
#endif
template<typename IDLType> class DOMPromiseDeferred;
struct MockWebAuthenticationConfiguration;
class Internals final : public RefCounted<Internals>, private ContextDestructionObserver
#if ENABLE(MEDIA_STREAM)
, public RealtimeMediaSource::Observer
, private RealtimeMediaSource::AudioSampleObserver
, private RealtimeMediaSource::VideoFrameObserver
#endif
{
public:
static Ref<Internals> create(Document&);
virtual ~Internals();
static void resetToConsistentState(Page&);
ExceptionOr<String> elementRenderTreeAsText(Element&);
bool hasPausedImageAnimations(Element&);
bool isPaintingFrequently(Element&);
void incrementFrequentPaintCounter(Element&);
String address(Node&);
bool nodeNeedsStyleRecalc(Node&);
String styleChangeType(Node&);
String description(JSC::JSValue);
void log(const String&);
bool isPreloaded(const String& url);
bool isLoadingFromMemoryCache(const String& url);
String fetchResponseSource(FetchResponse&);
String xhrResponseSource(XMLHttpRequest&);
bool isSharingStyleSheetContents(HTMLLinkElement&, HTMLLinkElement&);
bool isStyleSheetLoadingSubresources(HTMLLinkElement&);
enum class CachePolicy { UseProtocolCachePolicy, ReloadIgnoringCacheData, ReturnCacheDataElseLoad, ReturnCacheDataDontLoad };
void setOverrideCachePolicy(CachePolicy);
ExceptionOr<void> setCanShowModalDialogOverride(bool allow);
enum class ResourceLoadPriority { ResourceLoadPriorityVeryLow, ResourceLoadPriorityLow, ResourceLoadPriorityMedium, ResourceLoadPriorityHigh, ResourceLoadPriorityVeryHigh };
void setOverrideResourceLoadPriority(ResourceLoadPriority);
void setStrictRawResourceValidationPolicyDisabled(bool);
std::optional<ResourceLoadPriority> getResourcePriority(const String& url);
using FetchObject = std::variant<RefPtr<FetchRequest>, RefPtr<FetchResponse>>;
bool isFetchObjectContextStopped(const FetchObject&);
void clearMemoryCache();
void pruneMemoryCacheToSize(unsigned size);
void destroyDecodedDataForAllImages();
unsigned memoryCacheSize() const;
unsigned imageFrameIndex(HTMLImageElement&);
unsigned imageFrameCount(HTMLImageElement&);
float imageFrameDurationAtIndex(HTMLImageElement&, unsigned index);
void setImageFrameDecodingDuration(HTMLImageElement&, float duration);
void resetImageAnimation(HTMLImageElement&);
bool isImageAnimating(HTMLImageElement&);
void setImageAnimationEnabled(bool);
void resumeImageAnimation(HTMLImageElement&);
void pauseImageAnimation(HTMLImageElement&);
unsigned imagePendingDecodePromisesCountForTesting(HTMLImageElement&);
void setClearDecoderAfterAsyncFrameRequestForTesting(HTMLImageElement&, bool enabled);
unsigned imageDecodeCount(HTMLImageElement&);
unsigned imageCachedSubimageCreateCount(HTMLImageElement&);
unsigned remoteImagesCountForTesting() const;
void setAsyncDecodingEnabledForTesting(HTMLImageElement&, bool enabled);
void setForceUpdateImageDataEnabledForTesting(HTMLImageElement&, bool enabled);
void setGridMaxTracksLimit(unsigned);
void clearBackForwardCache();
unsigned backForwardCacheSize() const;
void preventDocumentFromEnteringBackForwardCache();
void disableTileSizeUpdateDelay();
void setSpeculativeTilingDelayDisabledForTesting(bool);
Ref<CSSComputedStyleDeclaration> computedStyleIncludingVisitedInfo(Element&) const;
Node* ensureUserAgentShadowRoot(Element& host);
Node* shadowRoot(Element& host);
ExceptionOr<String> shadowRootType(const Node&) const;
const AtomString& shadowPseudoId(Element&);
void setShadowPseudoId(Element&, const AtomString&);
// DOMTimers throttling testing.
ExceptionOr<bool> isTimerThrottled(int timeoutId);
String requestAnimationFrameThrottlingReasons() const;
double requestAnimationFrameInterval() const;
bool scriptedAnimationsAreSuspended() const;
bool areTimersThrottled() const;
enum EventThrottlingBehavior { Responsive, Unresponsive };
void setEventThrottlingBehaviorOverride(std::optional<EventThrottlingBehavior>);
std::optional<EventThrottlingBehavior> eventThrottlingBehaviorOverride() const;
// Spatial Navigation testing.
ExceptionOr<unsigned> lastSpatialNavigationCandidateCount() const;
// CSS Animation testing.
bool animationWithIdExists(const String&) const;
unsigned numberOfActiveAnimations() const;
ExceptionOr<bool> animationsAreSuspended() const;
ExceptionOr<void> suspendAnimations() const;
ExceptionOr<void> resumeAnimations() const;
double animationsInterval() const;
// Web Animations testing.
struct AcceleratedAnimation {
String property;
double speed;
};
Vector<AcceleratedAnimation> acceleratedAnimationsForElement(Element&);
unsigned numberOfAnimationTimelineInvalidations() const;
double timeToNextAnimationTick(WebAnimation&) const;
// For animations testing, we need a way to get at pseudo elements.
ExceptionOr<RefPtr<Element>> pseudoElement(Element&, const String&);
Node* treeScopeRootNode(Node&);
Node* parentTreeScope(Node&);
String visiblePlaceholder(Element&);
void setCanShowPlaceholder(Element&, bool);
Element* insertTextPlaceholder(int width, int height);
void removeTextPlaceholder(Element&);
void selectColorInColorChooser(HTMLInputElement&, const String& colorValue);
ExceptionOr<Vector<AtomString>> formControlStateOfPreviousHistoryItem();
ExceptionOr<void> setFormControlStateOfPreviousHistoryItem(const Vector<AtomString>&);
ExceptionOr<Ref<DOMRect>> absoluteLineRectFromPoint(int x, int y);
ExceptionOr<Ref<DOMRect>> absoluteCaretBounds();
ExceptionOr<bool> isCaretBlinkingSuspended();
Ref<DOMRect> boundingBox(Element&);
ExceptionOr<Ref<DOMRectList>> inspectorHighlightRects();
ExceptionOr<unsigned> inspectorGridOverlayCount();
ExceptionOr<unsigned> inspectorFlexOverlayCount();
ExceptionOr<unsigned> inspectorPaintRectCount();
ExceptionOr<unsigned> markerCountForNode(Node&, const String&);
ExceptionOr<RefPtr<Range>> markerRangeForNode(Node&, const String& markerType, unsigned index);
ExceptionOr<String> markerDescriptionForNode(Node&, const String& markerType, unsigned index);
ExceptionOr<String> dumpMarkerRects(const String& markerType);
ExceptionOr<void> setMarkedTextMatchesAreHighlighted(bool);
void invalidateFontCache();
ExceptionOr<void> setLowPowerModeEnabled(bool);
ExceptionOr<void> setOutsideViewportThrottlingEnabled(bool);
ExceptionOr<void> setScrollViewPosition(int x, int y);
ExceptionOr<void> unconstrainedScrollTo(Element&, double x, double y);
ExceptionOr<void> scrollBySimulatingWheelEvent(Element&, double deltaX, double deltaY);
ExceptionOr<Ref<DOMRect>> layoutViewportRect();
ExceptionOr<Ref<DOMRect>> visualViewportRect();
ExceptionOr<void> setViewIsTransparent(bool);
ExceptionOr<String> viewBaseBackgroundColor();
ExceptionOr<void> setViewBaseBackgroundColor(const String& colorValue);
ExceptionOr<void> setPagination(const String& mode, int gap, int pageLength);
ExceptionOr<uint64_t> lineIndexAfterPageBreak(Element&);
ExceptionOr<String> configurationForViewport(float devicePixelRatio, int deviceWidth, int deviceHeight, int availableWidth, int availableHeight);
ExceptionOr<bool> wasLastChangeUserEdit(Element& textField);
bool elementShouldAutoComplete(HTMLInputElement&);
void setAutofilled(HTMLInputElement&, bool enabled);
void setAutoFilledAndViewable(HTMLInputElement&, bool enabled);
void setAutoFilledAndObscured(HTMLInputElement&, bool enabled);
enum class AutoFillButtonType { None, Contacts, Credentials, StrongPassword, CreditCard, Loading };
void setShowAutoFillButton(HTMLInputElement&, AutoFillButtonType);
AutoFillButtonType autoFillButtonType(const HTMLInputElement&);
AutoFillButtonType lastAutoFillButtonType(const HTMLInputElement&);
Vector<String> recentSearches(const HTMLInputElement&);
ExceptionOr<void> scrollElementToRect(Element&, int x, int y, int w, int h);
ExceptionOr<String> autofillFieldName(Element&);
ExceptionOr<void> invalidateControlTints();
RefPtr<Range> rangeFromLocationAndLength(Element& scope, unsigned rangeLocation, unsigned rangeLength);
unsigned locationFromRange(Element& scope, const Range&, const Vector<String>& behaviors = { });
unsigned lengthFromRange(Element& scope, const Range&, const Vector<String>& behaviors = { });
String rangeAsText(const Range&);
String rangeAsTextUsingBackwardsTextIterator(const Range&);
Ref<Range> subrange(Range&, unsigned rangeLocation, unsigned rangeLength);
ExceptionOr<RefPtr<Range>> rangeForDictionaryLookupAtLocation(int x, int y);
RefPtr<Range> rangeOfStringNearLocation(const Range&, const String&, unsigned);
struct TextIteratorState {
String text;
RefPtr<Range> range;
};
Vector<TextIteratorState> statesOfTextIterator(const Range&, const Vector<String>& behaviors = { });
ExceptionOr<void> setDelegatesScrolling(bool enabled);
ExceptionOr<uint64_t> lastSpellCheckRequestSequence();
ExceptionOr<uint64_t> lastSpellCheckProcessedSequence();
void advanceToNextMisspelling();
Vector<String> userPreferredLanguages() const;
void setUserPreferredLanguages(const Vector<String>&);
Vector<String> userPreferredAudioCharacteristics() const;
void setUserPreferredAudioCharacteristic(const String&);
void setMaxCanvasPixelMemory(unsigned);
void setMaxCanvasArea(unsigned);
ExceptionOr<unsigned> wheelEventHandlerCount();
ExceptionOr<unsigned> touchEventHandlerCount();
ExceptionOr<Ref<DOMRectList>> touchEventRectsForEvent(const String&);
ExceptionOr<Ref<DOMRectList>> passiveTouchEventListenerRects();
ExceptionOr<RefPtr<NodeList>> nodesFromRect(Document&, int x, int y, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowUserAgentShadowContent, bool allowChildFrameContent) const;
String parserMetaData(JSC::JSValue = JSC::JSValue::JSUndefined);
void updateEditorUINowIfScheduled();
static bool sentenceRetroCorrectionEnabled()
{
#if PLATFORM(MAC)
return true;
#else
return false;
#endif
}
bool hasSpellingMarker(int from, int length);
bool hasGrammarMarker(int from, int length);
bool hasAutocorrectedMarker(int from, int length);
bool hasDictationAlternativesMarker(int from, int length);
bool hasCorrectionIndicatorMarker(int from, int length);
void setContinuousSpellCheckingEnabled(bool);
void setAutomaticQuoteSubstitutionEnabled(bool);
void setAutomaticLinkDetectionEnabled(bool);
void setAutomaticDashSubstitutionEnabled(bool);
void setAutomaticTextReplacementEnabled(bool);
void setAutomaticSpellingCorrectionEnabled(bool);
bool isSpellcheckDisabledExceptTextReplacement(const HTMLInputElement&) const;
void handleAcceptedCandidate(const String& candidate, unsigned location, unsigned length);
void changeSelectionListType();
void changeBackToReplacedString(const String& replacedString);
bool isOverwriteModeEnabled();
void toggleOverwriteModeEnabled();
bool testProcessIncomingSyncMessagesWhenWaitingForSyncReply();
ExceptionOr<RefPtr<Range>> rangeOfString(const String&, RefPtr<Range>&&, const Vector<String>& findOptions);
ExceptionOr<unsigned> countMatchesForText(const String&, const Vector<String>& findOptions, const String& markMatches);
ExceptionOr<unsigned> countFindMatches(const String&, const Vector<String>& findOptions);
unsigned numberOfScrollableAreas();
ExceptionOr<bool> isPageBoxVisible(int pageNumber);
static constexpr ASCIILiteral internalsId = "internals"_s;
InternalSettings* settings() const;
unsigned workerThreadCount() const;
ExceptionOr<bool> areSVGAnimationsPaused() const;
ExceptionOr<double> svgAnimationsInterval(SVGSVGElement&) const;
// Some SVGSVGElements are not accessible via JavaScript (e.g. those in CSS `background: url(data:image/svg+xml;utf8,<svg>...)`, but we need access to them for testing.
Vector<Ref<SVGSVGElement>> allSVGSVGElements() const;
enum {
// Values need to be kept in sync with Internals.idl.
LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1,
LAYER_TREE_INCLUDES_TILE_CACHES = 2,
LAYER_TREE_INCLUDES_REPAINT_RECTS = 4,
LAYER_TREE_INCLUDES_PAINTING_PHASES = 8,
LAYER_TREE_INCLUDES_CONTENT_LAYERS = 16,
LAYER_TREE_INCLUDES_ACCELERATES_DRAWING = 32,
LAYER_TREE_INCLUDES_CLIPPING = 64,
LAYER_TREE_INCLUDES_BACKING_STORE_ATTACHED = 128,
LAYER_TREE_INCLUDES_ROOT_LAYER_PROPERTIES = 256,
LAYER_TREE_INCLUDES_EVENT_REGION = 512,
LAYER_TREE_INCLUDES_DEEP_COLOR = 1024,
LAYER_TREE_INCLUDES_DEVICE_SCALE = 2048,
};
ExceptionOr<String> layerTreeAsText(Document&, unsigned short flags) const;
ExceptionOr<uint64_t> layerIDForElement(Element&);
ExceptionOr<String> repaintRectsAsText() const;
ExceptionOr<uint64_t> scrollingNodeIDForNode(Node*);
enum {
// Values need to be kept in sync with Internals.idl.
PLATFORM_LAYER_TREE_DEBUG = 1,
PLATFORM_LAYER_TREE_IGNORES_CHILDREN = 2,
PLATFORM_LAYER_TREE_INCLUDE_MODELS = 4,
};
ExceptionOr<String> platformLayerTreeAsText(Element&, unsigned short flags) const;
ExceptionOr<String> scrollbarOverlayStyle(Node*) const;
ExceptionOr<bool> scrollbarUsingDarkAppearance(Node*) const;
ExceptionOr<String> horizontalScrollbarState(Node*) const;
ExceptionOr<String> verticalScrollbarState(Node*) const;
ExceptionOr<String> scrollingStateTreeAsText() const;
ExceptionOr<String> scrollingTreeAsText() const;
ExceptionOr<bool> haveScrollingTree() const;
ExceptionOr<String> synchronousScrollingReasons() const;
ExceptionOr<Ref<DOMRectList>> nonFastScrollableRects() const;
ExceptionOr<void> setElementUsesDisplayListDrawing(Element&, bool usesDisplayListDrawing);
ExceptionOr<void> setElementTracksDisplayListReplay(Element&, bool isTrackingReplay);
enum {
// Values need to be kept in sync with Internals.idl.
DISPLAY_LIST_INCLUDE_PLATFORM_OPERATIONS = 1,
DISPLAY_LIST_INCLUDE_RESOURCE_IDENTIFIERS = 2,
};
ExceptionOr<String> displayListForElement(Element&, unsigned short flags);
ExceptionOr<String> replayDisplayListForElement(Element&, unsigned short flags);
void setForceUseGlyphDisplayListForTesting(bool enabled);
ExceptionOr<String> cachedGlyphDisplayListsForTextNode(Node&, unsigned short flags);
void clearGlyphDisplayListCacheForTesting();
ExceptionOr<void> garbageCollectDocumentResources() const;
bool isUnderMemoryWarning();
bool isUnderMemoryPressure();
void beginSimulatedMemoryWarning();
void endSimulatedMemoryWarning();
void beginSimulatedMemoryPressure();
void endSimulatedMemoryPressure();
ExceptionOr<void> insertAuthorCSS(const String&) const;
ExceptionOr<void> insertUserCSS(const String&) const;
unsigned numberOfIDBTransactions() const;
unsigned numberOfLiveNodes() const;
unsigned numberOfLiveDocuments() const;
unsigned referencingNodeCount(const Document&) const;
#if ENABLE(WEB_AUDIO)
// BaseAudioContext lifetime testing.
static uint64_t baseAudioContextIdentifier(const BaseAudioContext&);
static bool isBaseAudioContextAlive(uint64_t contextID);
#endif
unsigned numberOfIntersectionObservers(const Document&) const;
unsigned numberOfResizeObservers(const Document&) const;
String documentIdentifier(const Document&) const;
bool isDocumentAlive(const String& documentIdentifier) const;
uint64_t messagePortIdentifier(const MessagePort&) const;
bool isMessagePortAlive(uint64_t messagePortIdentifier) const;
uint64_t storageAreaMapCount() const;
uint64_t elementIdentifier(Element&) const;
bool isElementAlive(uint64_t elementIdentifier) const;
uint64_t frameIdentifier(const Document&) const;
uint64_t pageIdentifier(const Document&) const;
bool isAnyWorkletGlobalScopeAlive() const;
String serviceWorkerClientInternalIdentifier(const Document&) const;
RefPtr<WindowProxy> openDummyInspectorFrontend(const String& url);
void closeDummyInspectorFrontend();
ExceptionOr<void> setInspectorIsUnderTest(bool);
String counterValue(Element&);
int pageNumber(Element&, float pageWidth = 800, float pageHeight = 600);
Vector<String> shortcutIconURLs() const;
int numberOfPages(float pageWidthInPixels = 800, float pageHeightInPixels = 600);
ExceptionOr<String> pageProperty(const String& propertyName, int pageNumber) const;
ExceptionOr<String> pageSizeAndMarginsInPixels(int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) const;
ExceptionOr<float> pageScaleFactor() const;
ExceptionOr<void> setPageScaleFactor(float scaleFactor, int x, int y);
ExceptionOr<void> setPageZoomFactor(float);
ExceptionOr<void> setTextZoomFactor(float);
ExceptionOr<void> setUseFixedLayout(bool);
ExceptionOr<void> setFixedLayoutSize(int width, int height);
ExceptionOr<void> setViewExposedRect(float left, float top, float width, float height);
void setPrinting(int width, int height);
void setHeaderHeight(float);
void setFooterHeight(float);
void setTopContentInset(float);
#if ENABLE(FULLSCREEN_API)
void webkitWillEnterFullScreenForElement(Element&);
void webkitDidEnterFullScreenForElement(Element&);
void webkitWillExitFullScreenForElement(Element&);
void webkitDidExitFullScreenForElement(Element&);
bool isAnimatingFullScreen() const;
#endif
struct FullscreenInsets {
float top { 0 };
float left { 0 };
float bottom { 0 };
float right { 0 };
};
void setFullscreenInsets(FullscreenInsets);
void setFullscreenAutoHideDuration(double);
void setFullscreenControlsHidden(bool);
#if ENABLE(VIDEO)
bool isChangingPresentationMode(HTMLVideoElement&) const;
#endif
#if ENABLE(VIDEO_PRESENTATION_MODE)
void setMockVideoPresentationModeEnabled(bool);
#endif
WEBCORE_TESTSUPPORT_EXPORT void setApplicationCacheOriginQuota(unsigned long long);
void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme);
void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme);
void registerDefaultPortForProtocol(unsigned short port, const String& protocol);
Ref<MallocStatistics> mallocStatistics() const;
Ref<TypeConversions> typeConversions() const;
Ref<MemoryInfo> memoryInfo() const;
Vector<String> getReferencedFilePaths() const;
ExceptionOr<void> startTrackingRepaints();
ExceptionOr<void> stopTrackingRepaints();
ExceptionOr<void> startTrackingLayerFlushes();
ExceptionOr<unsigned> layerFlushCount();
ExceptionOr<void> startTrackingStyleRecalcs();
ExceptionOr<unsigned> styleRecalcCount();
unsigned lastStyleUpdateSize() const;
ExceptionOr<void> startTrackingCompositingUpdates();
ExceptionOr<unsigned> compositingUpdateCount();
ExceptionOr<void> startTrackingRenderingUpdates();
ExceptionOr<unsigned> renderingUpdateCount();
enum CompositingPolicy { Normal, Conservative };
ExceptionOr<void> setCompositingPolicyOverride(std::optional<CompositingPolicy>);
ExceptionOr<std::optional<CompositingPolicy>> compositingPolicyOverride() const;
ExceptionOr<void> setAllowAnimationControlsOverride(bool);
void updateLayoutAndStyleForAllFrames();
ExceptionOr<void> updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*);
unsigned layoutCount() const;
Ref<ArrayBuffer> serializeObject(const RefPtr<SerializedScriptValue>&) const;
Ref<SerializedScriptValue> deserializeBuffer(ArrayBuffer&) const;
bool isFromCurrentWorld(JSC::JSValue) const;
JSC::JSValue evaluateInWorldIgnoringException(const String& name, const String& source);
void setUsesOverlayScrollbars(bool);
ExceptionOr<String> getCurrentCursorInfo();
String markerTextForListItem(Element&);
String toolTipFromElement(Element&) const;
void forceReload(bool endToEnd);
void reloadExpiredOnly();
void enableFixedWidthAutoSizeMode(bool enabled, int width, int height);
void enableSizeToContentAutoSizeMode(bool enabled, int width, int height);
#if ENABLE(LEGACY_ENCRYPTED_MEDIA)
void initializeMockCDM();
#endif
#if ENABLE(ENCRYPTED_MEDIA)
Ref<MockCDMFactory> registerMockCDM();
#endif
void enableMockMediaCapabilities();
#if ENABLE(SPEECH_SYNTHESIS)
void enableMockSpeechSynthesizer();
void enableMockSpeechSynthesizerForMediaElement(HTMLMediaElement&);
ExceptionOr<void> setSpeechUtteranceDuration(double);
unsigned minimumExpectedVoiceCount();
#endif
#if ENABLE(MEDIA_STREAM)
void setShouldInterruptAudioOnPageVisibilityChange(bool);
#endif
#if ENABLE(MEDIA_RECORDER)
void setCustomPrivateRecorderCreator();
#endif
#if ENABLE(WEB_RTC)
void emulateRTCPeerConnectionPlatformEvent(RTCPeerConnection&, const String& action);
void useMockRTCPeerConnectionFactory(const String&);
void setICECandidateFiltering(bool);
void setEnumeratingAllNetworkInterfacesEnabled(bool);
void stopPeerConnection(RTCPeerConnection&);
void clearPeerConnectionFactory();
void applyRotationForOutgoingVideoSources(RTCPeerConnection&);
void setWebRTCH265Support(bool);
void setWebRTCVP9Support(bool supportVP9Profile0, bool supportVP9Profile2);
void setWebRTCVP9VTBSupport(bool);
bool isSupportingVP9VTB() const;
void isVP9VTBDeccoderUsed(RTCPeerConnection&, DOMPromiseDeferred<IDLBoolean>&&);
void setSFrameCounter(RTCRtpSFrameTransform&, const String&);
uint64_t sframeCounter(const RTCRtpSFrameTransform&);
uint64_t sframeKeyId(const RTCRtpSFrameTransform&);
void setEnableWebRTCEncryption(bool);
void setUseDTLS10(bool);
#endif
String getImageSourceURL(Element&);
String blobInternalURL(const Blob&);
void isBlobInternalURLRegistered(const String&, DOMPromiseDeferred<IDLBoolean>&&);
#if ENABLE(VIDEO)
unsigned mediaElementCount();
Vector<String> mediaResponseSources(HTMLMediaElement&);
Vector<String> mediaResponseContentRanges(HTMLMediaElement&);
void simulateAudioInterruption(HTMLMediaElement&);
ExceptionOr<bool> mediaElementHasCharacteristic(HTMLMediaElement&, const String&);
void beginSimulatedHDCPError(HTMLMediaElement&);
void endSimulatedHDCPError(HTMLMediaElement&);
ExceptionOr<bool> mediaPlayerRenderingCanBeAccelerated(HTMLMediaElement&);
bool elementShouldBufferData(HTMLMediaElement&);
String elementBufferingPolicy(HTMLMediaElement&);
double privatePlayerVolume(const HTMLMediaElement&);
bool privatePlayerMuted(const HTMLMediaElement&);
bool isMediaElementHidden(const HTMLMediaElement&);
double elementEffectivePlaybackRate(const HTMLMediaElement&);
ExceptionOr<void> setOverridePreferredDynamicRangeMode(HTMLMediaElement&, const String&);
#endif
ExceptionOr<void> setIsPlayingToBluetoothOverride(std::optional<bool>);
bool isSelectPopupVisible(HTMLSelectElement&);
ExceptionOr<String> captionsStyleSheetOverride();
ExceptionOr<void> setCaptionsStyleSheetOverride(const String&);
ExceptionOr<void> setPrimaryAudioTrackLanguageOverride(const String&);
ExceptionOr<void> setCaptionDisplayMode(const String&);
#if ENABLE(VIDEO)
RefPtr<TextTrackCueGeneric> createGenericCue(double startTime, double endTime, String text);
ExceptionOr<String> textTrackBCP47Language(TextTrack&);
Ref<TimeRanges> createTimeRanges(Float32Array& startTimes, Float32Array& endTimes);
double closestTimeToTimeRanges(double time, TimeRanges&);
#endif
ExceptionOr<Ref<DOMRect>> selectionBounds();
ExceptionOr<RefPtr<StaticRange>> selectedRange();
void setSelectionWithoutValidation(Ref<Node> baseNode, unsigned baseOffset, RefPtr<Node> extentNode, unsigned extentOffset);
ExceptionOr<bool> isPluginUnavailabilityIndicatorObscured(Element&);
ExceptionOr<String> unavailablePluginReplacementText(Element&);
bool isPluginSnapshotted(Element&);
#if ENABLE(MEDIA_SOURCE)
WEBCORE_TESTSUPPORT_EXPORT void initializeMockMediaSource();
using BufferedSamplesPromise = DOMPromiseDeferred<IDLSequence<IDLDOMString>>;
void bufferedSamplesForTrackId(SourceBuffer&, const AtomString&, BufferedSamplesPromise&&);
void enqueuedSamplesForTrackID(SourceBuffer&, const AtomString&, BufferedSamplesPromise&&);
double minimumUpcomingPresentationTimeForTrackID(SourceBuffer&, const AtomString&);
void setShouldGenerateTimestamps(SourceBuffer&, bool);
void setMaximumQueueDepthForTrackID(SourceBuffer&, const AtomString&, size_t);
#endif
#if ENABLE(VIDEO)
ExceptionOr<void> beginMediaSessionInterruption(const String&);
void endMediaSessionInterruption(const String&);
void applicationWillBecomeInactive();
void applicationDidBecomeActive();
void applicationWillEnterForeground(bool suspendedUnderLock) const;
void applicationDidEnterBackground(bool suspendedUnderLock) const;
ExceptionOr<void> setMediaSessionRestrictions(const String& mediaType, StringView restrictionsString);
ExceptionOr<String> mediaSessionRestrictions(const String& mediaType) const;
void setMediaElementRestrictions(HTMLMediaElement&, StringView restrictionsString);
ExceptionOr<void> postRemoteControlCommand(const String&, float argument);
void activeAudioRouteDidChange(bool shouldPause);
bool elementIsBlockingDisplaySleep(const HTMLMediaElement&) const;
bool isPlayerVisibleInViewport(const HTMLMediaElement&) const;
bool isPlayerMuted(const HTMLMediaElement&) const;
void beginAudioSessionInterruption();
void endAudioSessionInterruption();
void suspendAllMediaBuffering();
#endif
#if ENABLE(WIRELESS_PLAYBACK_TARGET)
void setMockMediaPlaybackTargetPickerEnabled(bool);
ExceptionOr<void> setMockMediaPlaybackTargetPickerState(const String& deviceName, const String& deviceState);
void mockMediaPlaybackTargetPickerDismissPopup();
#endif
bool isMonitoringWirelessRoutes() const;
#if ENABLE(WEB_AUDIO)
void setAudioContextRestrictions(AudioContext&, StringView restrictionsString);
void useMockAudioDestinationCocoa();
#endif
void simulateSystemSleep() const;
void simulateSystemWake() const;
unsigned inflightBeaconsCount() const;
enum class PageOverlayType { View, Document };
ExceptionOr<Ref<MockPageOverlay>> installMockPageOverlay(PageOverlayType);
ExceptionOr<String> pageOverlayLayerTreeAsText(unsigned short flags) const;
void setPageMuted(StringView);
String pageMediaState();
void setPageDefersLoading(bool);
ExceptionOr<bool> pageDefersLoading();
void grantUniversalAccess();
void disableCORSForURL(const String&);
RefPtr<File> createFile(const String&);
String createTemporaryFile(const String& name, const String& contents);
void queueMicroTask(int);
bool testPreloaderSettingViewport();
#if ENABLE(CONTENT_FILTERING)
MockContentFilterSettings& mockContentFilterSettings();
#endif
ExceptionOr<String> scrollSnapOffsets(Element&);
ExceptionOr<bool> isScrollSnapInProgress(Element&);
void setPlatformMomentumScrollingPredictionEnabled(bool);
ExceptionOr<String> pathStringWithShrinkWrappedRects(const Vector<double>& rectComponents, double radius);
#if ENABLE(VIDEO)
String getCurrentMediaControlsStatusForElement(HTMLMediaElement&);
void setMediaControlsMaximumRightContainerButtonCountOverride(HTMLMediaElement&, size_t);
void setMediaControlsHidePlaybackRates(HTMLMediaElement&, bool);
#endif // ENABLE(VIDEO)
void setPageMediaVolume(float);
String userVisibleString(const DOMURL&);
void setShowAllPlugins(bool);
String resourceLoadStatisticsForURL(const DOMURL&);
void setTrackingPreventionEnabled(bool);
bool isReadableStreamDisturbed(ReadableStream&);
JSC::JSValue cloneArrayBuffer(JSC::JSGlobalObject&, JSC::JSValue, JSC::JSValue, JSC::JSValue);
String composedTreeAsText(Node&);
bool isProcessingUserGesture();
double lastHandledUserGestureTimestamp();
void withUserGesture(RefPtr<VoidCallback>&&);
void withoutUserGesture(RefPtr<VoidCallback>&&);
bool userIsInteracting();
bool hasTransientActivation();
bool consumeTransientActivation();
RefPtr<GCObservation> observeGC(JSC::JSValue);
enum class UserInterfaceLayoutDirection : uint8_t { LTR, RTL };
void setUserInterfaceLayoutDirection(UserInterfaceLayoutDirection);
bool userPrefersContrast() const;
bool userPrefersReducedMotion() const;
void reportBacktrace();
enum class BaseWritingDirection { Natural, Ltr, Rtl };
void setBaseWritingDirection(BaseWritingDirection);
#if ENABLE(POINTER_LOCK)
bool pageHasPendingPointerLock() const;
bool pageHasPointerLock() const;
#endif
Vector<String> accessKeyModifiers() const;
void setQuickLookPassword(const String&);
void setAsRunningUserScripts(Document&);
#if ENABLE(WEBGL)
enum class SimulatedWebGLContextEvent {
ContextChange,
GPUStatusFailure,
Timeout
};
void simulateEventForWebGLContext(SimulatedWebGLContextEvent, WebGLRenderingContext&);
enum class RequestedGPU {
Default,
LowPower,
HighPerformance
};
RequestedGPU requestedGPU(WebGLRenderingContext&);
#endif
void setPageVisibility(bool isVisible);
void setPageIsFocused(bool);
void setPageIsFocusedAndActive(bool);
void setPageIsInWindow(bool);
bool isPageActive() const;
#if ENABLE(WEB_RTC)
void setH264HardwareEncoderAllowed(bool allowed);
#endif
#if ENABLE(MEDIA_STREAM)
void stopObservingRealtimeMediaSource();
void setMockAudioTrackChannelNumber(MediaStreamTrack&, unsigned short);
void setCameraMediaStreamTrackOrientation(MediaStreamTrack&, int orientation);
unsigned long trackAudioSampleCount() const { return m_trackAudioSampleCount; }
unsigned long trackVideoSampleCount() const { return m_trackVideoSampleCount; }
void observeMediaStreamTrack(MediaStreamTrack&);
void mediaStreamTrackVideoFrameRotation(DOMPromiseDeferred<IDLShort>&&);
void delayMediaStreamTrackSamples(MediaStreamTrack&, float);
void setMediaStreamTrackMuted(MediaStreamTrack&, bool);
void removeMediaStreamTrack(MediaStream&, MediaStreamTrack&);
void simulateMediaStreamTrackCaptureSourceFailure(MediaStreamTrack&);
void setMediaStreamTrackIdentifier(MediaStreamTrack&, String&& id);
void setMediaStreamSourceInterrupted(MediaStreamTrack&, bool);
bool isMediaStreamSourceInterrupted(MediaStreamTrack&) const;
bool isMediaStreamSourceEnded(MediaStreamTrack&) const;
bool isMockRealtimeMediaSourceCenterEnabled();
bool shouldAudioTrackPlay(const AudioTrack&);
#endif
#if USE(AUDIO_SESSION)
using AudioSessionCategory = WebCore::AudioSessionCategory;
using AudioSessionMode = WebCore::AudioSessionMode;
using RouteSharingPolicy = WebCore::RouteSharingPolicy;
#else
enum class AudioSessionCategory : uint8_t {
None,
AmbientSound,
SoloAmbientSound,
MediaPlayback,
RecordAudio,
PlayAndRecord,
AudioProcessing,
};
enum class AudioSessionMode : uint8_t {
Default,
VideoChat,
MoviePlayback,
};
enum class RouteSharingPolicy : uint8_t {
Default,
LongFormAudio,
Independent,
LongFormVideo
};
#endif
bool supportsAudioSession() const;
AudioSessionCategory audioSessionCategory() const;
AudioSessionMode audioSessionMode() const;
RouteSharingPolicy routeSharingPolicy() const;
#if ENABLE(VIDEO)
AudioSessionCategory categoryAtMostRecentPlayback(HTMLMediaElement&) const;
AudioSessionMode modeAtMostRecentPlayback(HTMLMediaElement&) const;
#endif
double preferredAudioBufferSize() const;
double currentAudioBufferSize() const;
bool audioSessionActive() const;
void storeRegistrationsOnDisk(DOMPromiseDeferred<void>&&);
void sendH2Ping(String url, DOMPromiseDeferred<IDLDouble>&&);
void clearCacheStorageMemoryRepresentation(DOMPromiseDeferred<void>&&);
void cacheStorageEngineRepresentation(DOMPromiseDeferred<IDLDOMString>&&);
void setResponseSizeWithPadding(FetchResponse&, uint64_t size);
uint64_t responseSizeWithPadding(FetchResponse&) const;
const String& responseNetworkLoadMetricsProtocol(const FetchResponse&);
void updateQuotaBasedOnSpaceUsage();
void setConsoleMessageListener(RefPtr<StringCallback>&&);
#if ENABLE(SERVICE_WORKER)
using HasRegistrationPromise = DOMPromiseDeferred<IDLBoolean>;
void hasServiceWorkerRegistration(const String& clientURL, HasRegistrationPromise&&);
void terminateServiceWorker(ServiceWorker&, DOMPromiseDeferred<void>&&);
void whenServiceWorkerIsTerminated(ServiceWorker&, DOMPromiseDeferred<void>&&);
#endif
#if ENABLE(APPLE_PAY)
MockPaymentCoordinator& mockPaymentCoordinator(Document&);
#endif
struct ImageOverlayText {
String text;
RefPtr<DOMPointReadOnly> topLeft;
RefPtr<DOMPointReadOnly> topRight;
RefPtr<DOMPointReadOnly> bottomRight;
RefPtr<DOMPointReadOnly> bottomLeft;
bool hasLeadingWhitespace { true };
~ImageOverlayText();
};
struct ImageOverlayLine {
RefPtr<DOMPointReadOnly> topLeft;
RefPtr<DOMPointReadOnly> topRight;
RefPtr<DOMPointReadOnly> bottomRight;
RefPtr<DOMPointReadOnly> bottomLeft;
Vector<ImageOverlayText> children;
bool hasTrailingNewline { true };
bool isVertical { false };
~ImageOverlayLine();
};
struct ImageOverlayBlock {
String text;
RefPtr<DOMPointReadOnly> topLeft;
RefPtr<DOMPointReadOnly> topRight;
RefPtr<DOMPointReadOnly> bottomRight;
RefPtr<DOMPointReadOnly> bottomLeft;
~ImageOverlayBlock();
};
struct ImageOverlayDataDetector {
RefPtr<DOMPointReadOnly> topLeft;
RefPtr<DOMPointReadOnly> topRight;
RefPtr<DOMPointReadOnly> bottomRight;
RefPtr<DOMPointReadOnly> bottomLeft;
~ImageOverlayDataDetector();
};
void installImageOverlay(Element&, Vector<ImageOverlayLine>&&, Vector<ImageOverlayBlock>&& = { }, Vector<ImageOverlayDataDetector>&& = { });
bool hasActiveDataDetectorHighlight() const;
#if ENABLE(IMAGE_ANALYSIS)
void requestTextRecognition(Element&, RefPtr<VoidCallback>&&);
RefPtr<Element> textRecognitionCandidate() const;
#endif
bool isSystemPreviewLink(Element&) const;
bool isSystemPreviewImage(Element&) const;
void postTask(RefPtr<VoidCallback>&&);
ExceptionOr<void> queueTask(ScriptExecutionContext&, const String& source, RefPtr<VoidCallback>&&);
ExceptionOr<void> queueTaskToQueueMicrotask(Document&, const String& source, RefPtr<VoidCallback>&&);
ExceptionOr<bool> hasSameEventLoopAs(WindowProxy&);
void markContextAsInsecure();
bool usingAppleInternalSDK() const;
bool usingGStreamer() const;
struct NowPlayingState {
String title;
double duration;
double elapsedTime;
uint64_t uniqueIdentifier;
bool hasActiveSession;
bool registeredAsNowPlayingApplication;
bool haveEverRegisteredAsNowPlayingApplication;
};
ExceptionOr<NowPlayingState> nowPlayingState() const;
struct MediaUsageState {
String mediaURL;
bool isPlaying;
bool canShowControlsManager;
bool canShowNowPlayingControls;
bool isSuspended;
bool isInActiveDocument;
bool isFullscreen;
bool isMuted;
bool isMediaDocumentInMainFrame;
bool isVideo;
bool isAudio;
bool hasVideo;
bool hasAudio;
bool hasRenderer;
bool audioElementWithUserGesture;
bool userHasPlayedAudioBefore;
bool isElementRectMostlyInMainFrame;
bool playbackPermitted;
bool pageMediaPlaybackSuspended;
bool isMediaDocumentAndNotOwnerElement;
bool pageExplicitlyAllowsElementToAutoplayInline;
bool requiresFullscreenForVideoPlaybackAndFullscreenNotPermitted;
bool isVideoAndRequiresUserGestureForVideoRateChange;
bool isAudioAndRequiresUserGestureForAudioRateChange;
bool isVideoAndRequiresUserGestureForVideoDueToLowPowerMode;
bool noUserGestureRequired;
bool requiresPlaybackAndIsNotPlaying;
bool hasEverNotifiedAboutPlaying;
bool outsideOfFullscreen;
bool isLargeEnoughForMainContent;
};
ExceptionOr<MediaUsageState> mediaUsageState(HTMLMediaElement&) const;
ExceptionOr<bool> elementShouldDisplayPosterImage(HTMLVideoElement&) const;
#if ENABLE(VIDEO)
using PlaybackControlsPurpose = MediaElementSession::PlaybackControlsPurpose;
RefPtr<HTMLMediaElement> bestMediaElementForRemoteControls(PlaybackControlsPurpose);
// Same values as PlatformMediaSession::State, but re-declared to avoid redefinitions when linking
// directly with libWebCore (e.g. with non-unified builds)
enum MediaSessionState {
Idle,
Autoplaying,
Playing,
Paused,
Interrupted,
};
MediaSessionState mediaSessionState(HTMLMediaElement&);
size_t mediaElementCount() const;
void setMediaElementVolumeLocked(HTMLMediaElement&, bool);
#if ENABLE(SPEECH_SYNTHESIS)
ExceptionOr<RefPtr<SpeechSynthesisUtterance>> speechSynthesisUtteranceForCue(const VTTCue&);
ExceptionOr<RefPtr<VTTCue>> mediaElementCurrentlySpokenCue(HTMLMediaElement&);
#endif
#endif // ENABLE(VIDEO)
void setCaptureExtraNetworkLoadMetricsEnabled(bool);
String ongoingLoadsDescriptions() const;
void reloadWithoutContentExtensions();
void setUseSystemAppearance(bool);
size_t pluginCount();
ExceptionOr<unsigned> pluginScrollPositionX(Element&);
ExceptionOr<unsigned> pluginScrollPositionY(Element&);
void notifyResourceLoadObserver();
unsigned primaryScreenDisplayID();
bool capsLockIsOn();
using HEVCParameterSet = WebCore::HEVCParameters;
using HEVCParameterCodec = WebCore::HEVCParameters::Codec;
std::optional<HEVCParameterSet> parseHEVCCodecParameters(StringView);
String createHEVCCodecParametersString(const HEVCParameterSet& parameters);
struct DoViParameterSet {
String codecName;
uint16_t bitstreamProfileID;
uint16_t bitstreamLevelID;
};
std::optional<DoViParameterSet> parseDoViCodecParameters(StringView);
String createDoViCodecParametersString(const DoViParameterSet& parameters);
using VPCodecConfigurationRecord = WebCore::VPCodecConfigurationRecord;
std::optional<VPCodecConfigurationRecord> parseVPCodecParameters(StringView);
struct CookieData {
String name;
String value;
String domain;
String path;
// Expiration dates are expressed as milliseconds since the UNIX epoch.
double expires { 0 };
bool isHttpOnly { false };
bool isSecure { false };
bool isSession { false };
bool isSameSiteNone { false };
bool isSameSiteLax { false };
bool isSameSiteStrict { false };
CookieData(Cookie cookie)
: name(cookie.name)
, value(cookie.value)
, domain(cookie.domain)
, path(cookie.path)
, expires(cookie.expires.value_or(0))
, isHttpOnly(cookie.httpOnly)
, isSecure(cookie.secure)
, isSession(cookie.session)
, isSameSiteNone(cookie.sameSite == Cookie::SameSitePolicy::None)
, isSameSiteLax(cookie.sameSite == Cookie::SameSitePolicy::Lax)
, isSameSiteStrict(cookie.sameSite == Cookie::SameSitePolicy::Strict)
{
ASSERT(!(isSameSiteLax && isSameSiteStrict) && !(isSameSiteLax && isSameSiteNone) && !(isSameSiteStrict && isSameSiteNone));
}
CookieData()
{
}
};
Vector<CookieData> getCookies() const;
void setAlwaysAllowLocalWebarchive(bool);
void processWillSuspend();
void processDidResume();
void testDictionaryLogging();
void setMaximumIntervalForUserGestureForwardingForFetch(double);
void setTransientActivationDuration(double seconds);
void setIsPlayingToAutomotiveHeadUnit(bool);
struct TextIndicatorInfo {
RefPtr<DOMRectReadOnly> textBoundingRectInRootViewCoordinates;
RefPtr<DOMRectList> textRectsInBoundingRectCoordinates;
TextIndicatorInfo();
TextIndicatorInfo(const WebCore::TextIndicatorData&);
~TextIndicatorInfo();
};
struct TextIndicatorOptions {
bool useBoundingRectAndPaintAllContentForComplexRanges { false };
bool computeEstimatedBackgroundColor { false };
bool respectTextColor { false };
bool useUserSelectAllCommonAncestor { false };
OptionSet<WebCore::TextIndicatorOption> coreOptions()
{
OptionSet<WebCore::TextIndicatorOption> options;
if (useBoundingRectAndPaintAllContentForComplexRanges)
options.add(TextIndicatorOption::UseBoundingRectAndPaintAllContentForComplexRanges);
if (computeEstimatedBackgroundColor)
options.add(TextIndicatorOption::ComputeEstimatedBackgroundColor);
if (respectTextColor)
options.add(TextIndicatorOption::RespectTextColor);
if (useUserSelectAllCommonAncestor)
options.add(TextIndicatorOption::UseUserSelectAllCommonAncestor);
return options;
}
};
TextIndicatorInfo textIndicatorForRange(const Range&, TextIndicatorOptions);
void addPrefetchLoadEventListener(HTMLLinkElement&, RefPtr<EventListener>&&);
#if ENABLE(WEB_AUTHN)
void setMockWebAuthenticationConfiguration(const MockWebAuthenticationConfiguration&);
#endif
int processIdentifier() const;
Ref<InternalsSetLike> createInternalsSetLike();
Ref<InternalsMapLike> createInternalsMapLike();
bool hasSandboxMachLookupAccessToGlobalName(const String& process, const String& service);
bool hasSandboxMachLookupAccessToXPCServiceName(const String& process, const String& service);
bool hasSandboxIOKitOpenAccessToClass(const String& process, const String& ioKitClass);
bool hasSandboxUnixSyscallAccess(const String& process, unsigned syscall) const;
String highlightPseudoElementColor(const AtomString& highlightName, Element&);
String windowLocationHost(LocalDOMWindow&);
String systemColorForCSSValue(const String& cssValue, bool useDarkModeAppearance, bool useElevatedUserInterfaceLevel);
bool systemHasBattery() const;
void setSystemHasBatteryForTesting(bool);
void setSystemHasACForTesting(bool);
void setHardwareVP9DecoderDisabledForTesting(bool);
void setVP9DecoderDisabledForTesting(bool);
void setVP9ScreenSizeAndScaleForTesting(double, double, double);
int readPreferenceInteger(const String& domain, const String& key);
String encodedPreferenceValue(const String& domain, const String& key);
String getUTIFromTag(const String& tagClass, const String& tag, const String& conformingToUTI);
bool supportsPictureInPicture();
String focusRingColor();
bool isRemoteUIAppForAccessibility();
ExceptionOr<unsigned> createSleepDisabler(const String& reason, bool display);
bool destroySleepDisabler(unsigned identifier);
#if ENABLE(APP_HIGHLIGHTS)
Vector<String> appHighlightContextMenuItemTitles() const;
unsigned numberOfAppHighlights();
#endif
#if ENABLE(WEBXR)
ExceptionOr<RefPtr<WebXRTest>> xrTest();
#endif
#if ENABLE(ENCRYPTED_MEDIA)
unsigned mediaKeysInternalInstanceObjectRefCount(const MediaKeys&) const;
unsigned mediaKeySessionInternalInstanceSessionObjectRefCount(const MediaKeySession&) const;
#endif
enum class ContentSizeCategory { L, XXXL };
void setContentSizeCategory(ContentSizeCategory);
#if ENABLE(ATTACHMENT_ELEMENT)
struct AttachmentThumbnailInfo {
unsigned width { 0 };
unsigned height { 0 };
};
ExceptionOr<AttachmentThumbnailInfo> attachmentThumbnailInfo(const HTMLAttachmentElement&);
#if ENABLE(SERVICE_CONTROLS)
bool hasImageControls(const HTMLImageElement&) const;
#endif
#endif // ENABLE(ATTACHMENT_ELEMENT)
#if ENABLE(MEDIA_SESSION)
ExceptionOr<double> currentMediaSessionPosition(const MediaSession&);
ExceptionOr<void> sendMediaSessionAction(MediaSession&, const MediaSessionActionDetails&);
using ArtworkImagePromise = DOMPromiseDeferred<IDLInterface<ImageData>>;
void loadArtworkImage(String&&, ArtworkImagePromise&&);
ExceptionOr<Vector<String>> platformSupportedCommands() const;
#if ENABLE(MEDIA_SESSION_COORDINATOR)
ExceptionOr<void> registerMockMediaSessionCoordinator(ScriptExecutionContext&, RefPtr<StringCallback>&&);
ExceptionOr<void> setMockMediaSessionCoordinatorCommandsShouldFail(bool);
#endif
#endif // ENABLE(MEDIA_SESSION)
enum TreeType : uint8_t { Tree, ShadowIncludingTree, ComposedTree };
String treeOrder(Node&, Node&, TreeType);
String treeOrderBoundaryPoints(Node& containerA, unsigned offsetA, Node& containerB, unsigned offsetB, TreeType);
bool rangeContainsNode(const AbstractRange&, Node&, TreeType);
bool rangeContainsRange(const AbstractRange&, const AbstractRange&, TreeType);
bool rangeContainsBoundaryPoint(const AbstractRange&, Node&, unsigned offset, TreeType);
bool rangeIntersectsNode(const AbstractRange&, Node&, TreeType);
bool rangeIntersectsRange(const AbstractRange&, const AbstractRange&, TreeType);
void systemBeep();
String dumpStyleResolvers();
enum class AutoplayPolicy : uint8_t {
Default,
Allow,
AllowWithoutSound,
Deny,
};
ExceptionOr<void> setDocumentAutoplayPolicy(Document&, AutoplayPolicy);
void retainTextIteratorForDocumentContent();
#if ENABLE(SERVICE_WORKER)
RefPtr<PushSubscription> createPushSubscription(const String& endpoint, std::optional<EpochTimeStamp> expirationTime, const ArrayBuffer& serverVAPIDPublicKey, const ArrayBuffer& clientECDHPublicKey, const ArrayBuffer& auth);
#endif
#if ENABLE(ARKIT_INLINE_PREVIEW_MAC)
using ModelInlinePreviewUUIDsPromise = DOMPromiseDeferred<IDLSequence<IDLDOMString>>;
void modelInlinePreviewUUIDs(ModelInlinePreviewUUIDsPromise&&) const;
String modelInlinePreviewUUIDForModelElement(const HTMLModelElement&) const;
#endif
void avoidIOSurfaceSizeCheckInWebProcess(HTMLCanvasElement&);
bool hasSleepDisabler() const;
void acceptTypedArrays(Int32Array&);
struct SelectorFilterHashCounts {
size_t ids { 0 };
size_t classes { 0 };
size_t tags { 0 };
size_t attributes { 0 };
};
SelectorFilterHashCounts selectorFilterHashCounts(const String& selector);
bool isVisuallyNonEmpty() const;
bool isUsingUISideCompositing() const;
private:
explicit Internals(Document&);
Document* contextDocument() const;
LocalFrame* frame() const;
void updatePageActivityState(OptionSet<ActivityState> statesToChange, bool newValue);
ExceptionOr<RenderedDocumentMarker*> markerAt(Node&, const String& markerType, unsigned index);
ExceptionOr<ScrollableArea*> scrollableAreaForNode(Node*) const;
#if ENABLE(IMAGE_ANALYSIS_ENHANCEMENTS)
static RetainPtr<VKCImageAnalysis> fakeImageAnalysisResultForTesting(const Vector<ImageOverlayLine>&);
#endif
#if ENABLE(DATA_DETECTION)
static DDScannerResult *fakeDataDetectorResultForTesting();
#endif
static RefPtr<SharedBuffer> pngDataForTesting();
CachedResource* resourceFromMemoryCache(const String& url);
bool hasMarkerFor(DocumentMarker::MarkerType, int from, int length);
#if ENABLE(MEDIA_STREAM)
// RealtimeMediaSource::Observer API
void videoFrameAvailable(VideoFrame&, VideoFrameTimeMetadata) final;
// RealtimeMediaSource::AudioSampleObserver API
void audioSamplesAvailable(const MediaTime&, const PlatformAudioData&, const AudioStreamDescription&, size_t) final { m_trackAudioSampleCount++; }
OrientationNotifier m_orientationNotifier;
unsigned long m_trackVideoSampleCount { 0 };
unsigned long m_trackAudioSampleCount { 0 };
RefPtr<RealtimeMediaSource> m_trackSource;
int m_trackVideoRotation { 0 };
#endif
#if ENABLE(MEDIA_SESSION)
std::unique_ptr<ArtworkImageLoader> m_artworkLoader;
std::unique_ptr<ArtworkImagePromise> m_artworkImagePromise;
#endif
std::unique_ptr<InspectorStubFrontend> m_inspectorFrontend;
RefPtr<CacheStorageConnection> m_cacheStorageConnection;
HashMap<unsigned, std::unique_ptr<WebCore::SleepDisabler>> m_sleepDisablers;
std::unique_ptr<TextIterator> m_textIterator;
#if ENABLE(WEBXR)
RefPtr<WebXRTest> m_xrTest;
#endif
#if ENABLE(SPEECH_SYNTHESIS)
RefPtr<PlatformSpeechSynthesizerMock> m_platformSpeechSynthesizer;
#endif
#if ENABLE(MEDIA_SESSION_COORDINATOR)
RefPtr<MockMediaSessionCoordinator> m_mockMediaSessionCoordinator;
#endif
#if ENABLE(VIDEO)
std::unique_ptr<CaptionUserPreferencesTestingModeToken> m_testingModeToken;
#endif
};
} // namespace WebCore
|