<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Fixed elements are missing in sideways-scrolling RTL documents in WK1"
   href="https://bugs.webkit.org/show_bug.cgi?id=152603#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Fixed elements are missing in sideways-scrolling RTL documents in WK1"
   href="https://bugs.webkit.org/show_bug.cgi?id=152603">bug 152603</a>
              from <span class="vcard"><a class="email" href="mailto:simon.fraser&#64;apple.com" title="Simon Fraser (smfr) &lt;simon.fraser&#64;apple.com&gt;"> <span class="fn">Simon Fraser (smfr)</span></a>
</span></b>
        <pre>Fix:

&#64;&#64; -6584,7 +6584,8 &#64;&#64; static BOOL writingDirectionKeyBindingsEnabled()
 {
 #if !PLATFORM(IOS)
     if (!_private-&gt;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];</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>