WebKit Bugzilla
Attachment 345785 Details for
Bug 187976
: Mask AVBackgroundView to the corner radius.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for landing.
bug-187976-20180725144251.patch (text/plain), 1.65 KB, created by
Jeremy Jones
on 2018-07-25 14:42:51 PDT
(
hide
)
Description:
Patch for landing.
Filename:
MIME Type:
Creator:
Jeremy Jones
Created:
2018-07-25 14:42:51 PDT
Size:
1.65 KB
patch
obsolete
>Subversion Revision: 234109 >diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog >index 1c28fa0db410366a9c5bd88b7a75cd489dec549b..38c29916e7b2a61b6ac4abf184244ea4e0b85352 100644 >--- a/Source/WebKit/ChangeLog >+++ b/Source/WebKit/ChangeLog >@@ -1,3 +1,16 @@ >+2018-07-24 Jeremy Jones <jeremyj@apple.com> >+ >+ Mask AVBackgroundView to the corner radius. >+ https://bugs.webkit.org/show_bug.cgi?id=187976 >+ rdar://problem/41810866 >+ >+ Reviewed by Jon Lee. >+ >+ This changes sets the appropriate mask to the layer so the corners look correct. >+ >+ * UIProcess/ios/fullscreen/WKFullscreenStackView.mm: >+ (-[WKFullscreenStackView init]): >+ > 2018-07-23 John Wilander <wilander@apple.com> > > Resource Load Statistics: Add logging of Storage Access API use in experimental debug mode >diff --git a/Source/WebKit/UIProcess/ios/fullscreen/WKFullscreenStackView.mm b/Source/WebKit/UIProcess/ios/fullscreen/WKFullscreenStackView.mm >index 61151b82f3099156c706666a09cf806748395399..cdc82c8d0999b861588d972bf8eea7ebc99c971b 100644 >--- a/Source/WebKit/UIProcess/ios/fullscreen/WKFullscreenStackView.mm >+++ b/Source/WebKit/UIProcess/ios/fullscreen/WKFullscreenStackView.mm >@@ -60,6 +60,11 @@ - (instancetype)init > _backgroundView = adoptNS([allocAVBackgroundViewInstance() initWithFrame:frame]); > [self addSubview:_backgroundView.get()]; > >+ // FIXME: remove this once AVBackgroundView handles this. https://bugs.webkit.org/show_bug.cgi?id=188022 >+ [_backgroundView setClipsToBounds:YES]; >+ [_backgroundView.get().layer setContinuousCorners:YES]; >+ [_backgroundView.get().layer setCornerRadius:16]; >+ > return self; > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 187976
:
345721
| 345785