Rupin Mittal

Results 6 issues of Rupin Mittal

#### b8964f27cda6c674774ff09591487c1d15bd2dca Add support to the Permissions API for dedicated workers https://bugs.webkit.org/show_bug.cgi?id=243805 Reviewed by NOBODY (OOPS!). Permissions::query() should be exposed for both window and workers. Currently, it is only exposed...

New Bugs
WebKit Nightly Build

#### 5c3e7faa48a51fad19545e9bc2d29c3f1d876aba Drop IsDeprecatedWeakRefSmartPointerException from PlatformXRSystem and PlatformXRCoordinator https://bugs.webkit.org/show_bug.cgi?id=281740 rdar://138175388 Reviewed by NOBODY (OOPS!). Drop the exception by making both classes ref-counted. * Source/WebKit/UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::didAttachToRunningProcess): (WebKit::WebPageProxy::restartXRSessionActivityOnProcessResumeIfNeeded): (WebKit::WebPageProxy::resetState): * Source/WebKit/UIProcess/WebPageProxyInternals.h: *...

WebKit Misc.

#### 0dd9253e23c89918a00739b89fcc673c063c5251 Drop IsDeprecatedWeakRefSmartPointerException from WebMDNSRegister https://bugs.webkit.org/show_bug.cgi?id=281729 rdar://138170193 Reviewed by NOBODY (OOPS!). WebMDNSRegister forwards its ref-counting to its owner LibWebRTCNetwork, which forwards its own ref-counting to its owner WebProcess. *...

WebKit Misc.

#### 49da39b6febb5c8ccd4f511485626c93ecb47bff Adopt more smart pointers in WebPageProxy (part 3) https://bugs.webkit.org/show_bug.cgi?id=281700 rdar://138149402 Reviewed by NOBODY (OOPS!). Smart pointer adoption as per the static analyzer. * Source/WebKit/UIProcess/API/APIPageConfiguration.cpp: (API::PageConfiguration::protectedProcessPool const): * Source/WebKit/UIProcess/API/APIPageConfiguration.h:...

merging-blocked
WebKit Misc.

The spec (https://wicg.github.io/cookie-store/#CookieStore-getAll) has a step for getAll() that says if a URL is passed in, "If [this](https://webidl.spec.whatwg.org/#this)'s [relevant global object](https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global) is a [Window](https://html.spec.whatwg.org/multipage/nav-history-apis.html#window) object and parsed does not [equal](https://url.spec.whatwg.org/#concept-url-equals)...

Consider this code: `function runLoopingCase() {` ` cookieStore.onchange = (event) => {` ` printChangeEvent('Cookie got changed\n');` ` document.cookie="a=b";` ` };` ` document.cookie="a=b";` `}` The spec says that any time a...