[Webkit-unassigned] [Bug 152603] Fixed elements are missing in sideways-scrolling RTL documents in WK1

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Dec 30 20:27:28 PST 2015


https://bugs.webkit.org/show_bug.cgi?id=152603

--- Comment #1 from Simon Fraser (smfr) <simon.fraser at apple.com> ---
Fix:

@@ -6584,7 +6584,8 @@ static BOOL writingDirectionKeyBindingsEnabled()
 {
 #if !PLATFORM(IOS)
     if (!_private->layerHostingView) {
-        NSView* hostingView = [[WebLayerHostingFlippedView alloc] initWithFrame:[self bounds]];
+        NSSize boundsSize = [self bounds].size;
+        NSView* hostingView = [[WebLayerHostingFlippedView alloc] initWithFrame:NSMakeRect(0, 0, boundsSize.width, boundsSize.height)];
         [hostingView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
         [self addSubview:hostingView];
         [hostingView release];

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20151231/39b01c34/attachment.html>


More information about the webkit-unassigned mailing list