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
|
/*
* Copyright (C) 2018-2022 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 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 "Event.h"
#include "QuirksData.h"
#include <optional>
#include <wtf/Forward.h>
#include <wtf/TZoneMalloc.h>
namespace WebCore {
class Document;
class Element;
class EventListener;
class EventTarget;
class EventTypeInfo;
class HTMLElement;
class HTMLVideoElement;
class KeyframeEffect;
class LayoutUnit;
class LocalFrame;
class Node;
class PlatformMouseEvent;
class RegistrableDomain;
class ResourceRequest;
class RenderStyle;
class SecurityOriginData;
class WeakPtrImplWithEventTargetData;
enum class IsSyntheticClick : bool;
enum class StorageAccessWasGranted : uint8_t;
class Quirks {
WTF_MAKE_TZONE_ALLOCATED(Quirks);
WTF_MAKE_NONCOPYABLE(Quirks);
public:
Quirks(Document&);
~Quirks();
bool shouldSilenceResizeObservers() const;
bool shouldSilenceWindowResizeEventsDuringApplicationSnapshotting() const;
bool shouldSilenceMediaQueryListChangeEvents() const;
bool shouldIgnoreInvalidSignal() const;
bool needsFormControlToBeMouseFocusable() const;
bool needsAutoplayPlayPauseEvents() const;
bool needsSeekingSupportDisabled() const;
bool needsPerDocumentAutoplayBehavior() const;
bool needsHotelsAnimationQuirk(Element&, const RenderStyle&) const;
bool shouldAutoplayWebAudioForArbitraryUserGesture() const;
bool hasBrokenEncryptedMediaAPISupportQuirk() const;
#if ENABLE(TOUCH_EVENTS)
bool shouldDispatchSimulatedMouseEvents(const EventTarget*) const;
bool shouldDispatchedSimulatedMouseEventsAssumeDefaultPrevented(EventTarget*) const;
bool shouldPreventDispatchOfTouchEvent(const AtomString&, EventTarget*) const;
#endif
bool shouldDisablePointerEventsQuirk() const;
bool needsDeferKeyDownAndKeyPressTimersUntilNextEditingCommand() const;
bool shouldExposeShowModalDialog() const;
bool shouldNavigatorPluginsBeEmpty() const;
bool returnNullPictureInPictureElementDuringFullscreenChange() const;
bool shouldPreventOrientationMediaQueryFromEvaluatingToLandscape() const;
bool shouldFlipScreenDimensions() const;
WEBCORE_EXPORT bool shouldDispatchSyntheticMouseEventsWhenModifyingSelection() const;
WEBCORE_EXPORT bool shouldSuppressAutocorrectionAndAutocapitalizationInHiddenEditableAreas() const;
WEBCORE_EXPORT bool isTouchBarUpdateSuppressedForHiddenContentEditable() const;
WEBCORE_EXPORT bool isNeverRichlyEditableForTouchBar() const;
WEBCORE_EXPORT bool shouldAvoidResizingWhenInputViewBoundsChange() const;
WEBCORE_EXPORT bool shouldAvoidScrollingWhenFocusedContentIsVisible() const;
WEBCORE_EXPORT bool shouldUseLegacySelectPopoverDismissalBehaviorInDataActivation() const;
WEBCORE_EXPORT bool shouldIgnoreAriaForFastPathContentObservationCheck() const;
WEBCORE_EXPORT bool shouldIgnoreViewportArgumentsToAvoidExcessiveZoom() const;
WEBCORE_EXPORT bool shouldLayOutAtMinimumWindowWidthWhenIgnoringScalingConstraints() const;
WEBCORE_EXPORT static bool shouldAllowNavigationToCustomProtocolWithoutUserGesture(StringView protocol, const SecurityOriginData& requesterOrigin);
WEBCORE_EXPORT bool needsYouTubeMouseOutQuirk() const;
WEBCORE_EXPORT bool shouldDisableWritingSuggestionsByDefault() const;
WEBCORE_EXPORT static void updateStorageAccessUserAgentStringQuirks(HashMap<RegistrableDomain, String>&&);
WEBCORE_EXPORT String storageAccessUserAgentStringQuirkForDomain(const URL&);
WEBCORE_EXPORT static bool needsIPadMiniUserAgent(const URL&);
WEBCORE_EXPORT static bool needsIPhoneUserAgent(const URL&);
WEBCORE_EXPORT static bool needsDesktopUserAgent(const URL&);
WEBCORE_EXPORT static bool needsPartitionedCookies(const ResourceRequest&);
WEBCORE_EXPORT static std::optional<Vector<HashSet<String>>> defaultVisibilityAdjustmentSelectors(const URL&);
bool needsGMailOverflowScrollQuirk() const;
bool needsIPadSkypeOverflowScrollQuirk() const;
bool needsYouTubeOverflowScrollQuirk() const;
bool needsFullscreenDisplayNoneQuirk() const;
bool needsFullscreenObjectFitQuirk() const;
bool needsWeChatScrollingQuirk() const;
bool needsZomatoEmailLoginLabelQuirk() const;
bool needsGoogleMapsScrollingQuirk() const;
bool needsPrimeVideoUserSelectNoneQuirk() const;
bool needsFacebookRemoveNotSupportedQuirk() const;
bool needsScrollbarWidthThinDisabledQuirk() const;
bool needsBodyScrollbarWidthNoneDisabledQuirk() const;
bool shouldOpenAsAboutBlank(const String&) const;
bool needsPreloadAutoQuirk() const;
bool shouldBypassBackForwardCache() const;
bool shouldBypassAsyncScriptDeferring() const;
static bool shouldMakeEventListenerPassive(const EventTarget&, const EventTypeInfo&);
#if ENABLE(MEDIA_STREAM)
bool shouldEnableLegacyGetUserMediaQuirk() const;
bool shouldDisableImageCaptureQuirk() const;
bool shouldEnableSpeakerSelectionPermissionsPolicyQuirk() const;
#endif
bool needsCanPlayAfterSeekedQuirk() const;
bool shouldAvoidPastingImagesAsWebContent() const;
enum StorageAccessResult : bool { ShouldNotCancelEvent, ShouldCancelEvent };
enum ShouldDispatchClick : bool { No, Yes };
void triggerOptionalStorageAccessIframeQuirk(const URL& frameURL, CompletionHandler<void()>&&) const;
StorageAccessResult triggerOptionalStorageAccessQuirk(Element&, const PlatformMouseEvent&, const AtomString& eventType, int, Element*, bool isParentProcessAFullWebBrowser, IsSyntheticClick) const;
void setSubFrameDomainsForStorageAccessQuirk(Vector<RegistrableDomain>&& domains) { m_subFrameDomainsForStorageAccessQuirk = WTFMove(domains); }
const Vector<RegistrableDomain>& subFrameDomainsForStorageAccessQuirk() const { return m_subFrameDomainsForStorageAccessQuirk; }
bool needsVP9FullRangeFlagQuirk() const;
bool requiresUserGestureToPauseInPictureInPicture() const;
bool requiresUserGestureToLoadInPictureInPicture() const;
WEBCORE_EXPORT bool blocksReturnToFullscreenFromPictureInPictureQuirk() const;
WEBCORE_EXPORT bool blocksEnteringStandardFullscreenFromPictureInPictureQuirk() const;
bool shouldDisableEndFullscreenEventWhenEnteringPictureInPictureFromFullscreenQuirk() const;
static bool isMicrosoftTeamsRedirectURL(const URL&);
static bool hasStorageAccessForAllLoginDomains(const HashSet<RegistrableDomain>&, const RegistrableDomain&);
StorageAccessResult requestStorageAccessAndHandleClick(CompletionHandler<void(ShouldDispatchClick)>&&) const;
#if ENABLE(TOUCH_EVENTS)
WEBCORE_EXPORT static bool shouldOmitTouchEventDOMAttributesForDesktopWebsite(const URL&);
bool shouldDispatchPointerOutAfterHandlingSyntheticClick() const;
#endif
WEBCORE_EXPORT void setTopDocumentURLForTesting(URL&&);
static bool shouldOmitHTMLDocumentSupportedPropertyNames();
#if PLATFORM(IOS) || PLATFORM(VISION)
WEBCORE_EXPORT bool allowLayeredFullscreenVideos() const;
#endif
bool shouldEnableApplicationCacheQuirk() const;
bool shouldEnableFontLoadingAPIQuirk() const;
bool needsVideoShouldMaintainAspectRatioQuirk() const;
#if ENABLE(TEXT_AUTOSIZING)
bool shouldIgnoreTextAutoSizing() const;
#endif
#if PLATFORM(VISION)
WEBCORE_EXPORT bool shouldDisableFullscreenVideoAspectRatioAdaptiveSizing() const;
#endif
bool shouldDisableLazyIframeLoadingQuirk() const;
bool shouldDisableFetchMetadata() const;
bool shouldDisablePushStateFilePathRestrictions() const;
void setNeedsConfigurableIndexedPropertiesQuirk() { m_needsConfigurableIndexedPropertiesQuirk = true; }
bool needsConfigurableIndexedPropertiesQuirk() const;
// webkit.org/b/259091.
bool needsToCopyUserSelectNoneQuirk() const { return m_needsToCopyUserSelectNoneQuirk; }
void setNeedsToCopyUserSelectNoneQuirk() { m_needsToCopyUserSelectNoneQuirk = true; }
bool shouldEnableCanvas2DAdvancedPrivacyProtectionQuirk() const;
String advancedPrivacyProtectionSubstituteDataURLForScriptWithFeatures(const String& lastDrawnText, int canvasWidth, int canvasHeight) const;
bool needsResettingTransitionCancelsRunningTransitionQuirk() const;
bool shouldDisableDataURLPaddingValidation() const;
bool needsDisableDOMPasteAccessQuirk() const;
bool shouldDisableElementFullscreenQuirk() const;
bool shouldIgnorePlaysInlineRequirementQuirk() const;
WEBCORE_EXPORT bool shouldUseEphemeralPartitionedStorageForDOMCookies(const URL&) const;
bool needsLaxSameSiteCookieQuirk(const URL&) const;
String scriptToEvaluateBeforeRunningScriptFromURL(const URL&);
bool shouldHideCoarsePointerCharacteristics() const;
bool implicitMuteWhenVolumeSetToZero() const;
bool needsZeroMaxTouchPointsQuirk() const;
bool needsChromeMediaControlsPseudoElement() const;
#if PLATFORM(IOS_FAMILY)
WEBCORE_EXPORT bool shouldIgnoreContentObservationForClick(const Node&) const;
WEBCORE_EXPORT bool shouldSynthesizeTouchEventsAfterNonSyntheticClick(const Element&) const;
WEBCORE_EXPORT bool needsPointerTouchCompatibility(const Element&) const;
bool shouldTreatAddingMouseOutEventListenerAsContentChange() const;
#endif
bool needsMozillaFileTypeForDataTransfer() const;
bool needsBingGestureEventQuirk(EventTarget*) const;
bool shouldAvoidStartingSelectionOnMouseDown(const Node&) const;
bool shouldReuseLiveRangeForSelectionUpdate() const;
bool needsFacebookStoriesCreationFormQuirk(const Element&, const RenderStyle&) const;
bool needsLimitedMatroskaSupport() const;
WEBCORE_EXPORT bool needsNowPlayingFullscreenSwapQuirk() const;
bool needsWebKitMediaTextTrackDisplayQuirk() const;
bool shouldPreventKeyframeEffectAcceleration(const KeyframeEffect&) const;
private:
bool needsQuirks() const;
bool isDomain(const String&) const;
bool domainStartsWith(const String&) const;
bool isEmbedDomain(const String&) const;
bool isYoutubeEmbedDomain() const;
void determineRelevantQuirks();
static bool domainNeedsAvoidResizingWhenInputViewBoundsChangeQuirk(const URL&, QuirksData&);
static bool domainNeedsScrollbarWidthThinDisabledQuirk(const URL&, QuirksData&);
#if ENABLE(VIDEO_PRESENTATION_MODE)
static bool domainShouldDisableEndFullscreenEventWhenEnteringPictureInPictureFromFullscreenQuirk(const URL&, QuirksData&);
#endif
RefPtr<Document> protectedDocument() const;
URL topDocumentURL() const;
WeakPtr<Document, WeakPtrImplWithEventTargetData> m_document;
mutable WeakPtr<const Element, WeakPtrImplWithEventTargetData> m_facebookStoriesCreationFormContainer;
mutable QuirksData m_quirksData;
bool m_needsConfigurableIndexedPropertiesQuirk { false };
bool m_needsToCopyUserSelectNoneQuirk { false };
Vector<RegistrableDomain> m_subFrameDomainsForStorageAccessQuirk;
URL m_topDocumentURLForTesting;
};
} // namespace WebCore
|