<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - UIViewController with WKWebView presented modally causes the presented UIViewController to be dismissed."
   href="https://bugs.webkit.org/show_bug.cgi?id=165225#c28">Comment # 28</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - UIViewController with WKWebView presented modally causes the presented UIViewController to be dismissed."
   href="https://bugs.webkit.org/show_bug.cgi?id=165225">bug 165225</a>
              from <span class="vcard"><a class="email" href="mailto:bwright2&#64;apple.com" title="Brad Wright &lt;bwright2&#64;apple.com&gt;"> <span class="fn">Brad Wright</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=165225#c26">comment #26</a>)
<span class="quote">&gt; (In reply to <a href="show_bug.cgi?id=165225#c25">comment #25</a>)
&gt; &gt; Comment on <span class="bz_obsolete"><a href="attachment.cgi?id=303130&amp;action=diff" name="attach_303130" title="Patch">attachment 303130</a> <a href="attachment.cgi?id=303130&amp;action=edit" title="Patch">[details]</a></span>
&gt; &gt; Patch
&gt; &gt; 
&gt; &gt; View in context:
&gt; &gt; <a href="https://bugs.webkit.org/attachment.cgi?id=303130&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=303130&amp;action=review</a>
&gt; &gt; 
&gt; &gt; &gt; Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm:391
&gt; &gt; &gt; +    // dismiss any viewController that is being presented. This is works all VC, popovers, etc.
&gt; 
&gt; This is works for all VC.  Missed the for, in the comment.
&gt; &gt; 
&gt; &gt; Normally we would want to use a capital D in this kind of sentence-style
&gt; &gt; comment.
&gt; &gt; 
&gt; &gt; VC is not normally an abbreviation we use for view controller in WebKit code.
&gt; &gt; 
&gt; &gt; &quot;This is works all&quot;, is not grammatically correct.
&gt; &gt; 
&gt; &gt; &gt; Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm:394
&gt; &gt; &gt; +    UIViewController *presentedViewController = [UIViewController _viewControllerForFullScreenPresentationFromView:_view];
&gt; &gt; &gt; +    if (presentedViewController)
&gt; &gt; &gt; +        [presentedViewController dismissViewControllerAnimated:NO completion:nil];
&gt; &gt; 
&gt; &gt; Would be nice to define the variable inside the &quot;if&quot; since this is C++ code.
&gt; &gt; In fact, I personally would use auto instead of writing out UIViewController
&gt; &gt; * for the type of the variable.
&gt; &gt; 
&gt; &gt; &gt; Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm:508
&gt; &gt; &gt; +    // Clear out any previous view controller reference, to prevent calling dismiss on a view controller that
&gt; &gt; &gt; +    // was no longer being presented. Don't save a reference to the UIDocumentMenuViewController as it is self dismissing.
&gt; &gt; &gt; +    _presentationViewController = nil;
&gt; &gt; 
&gt; &gt; I don’t understand this comment and therefore don’t understand the code.
&gt; 
&gt; So what happening is that the _presentationViewController is used to called
&gt; in:
&gt; 
&gt; - (void)_dismissDisplayAnimated:(BOOL)animated
&gt; {
&gt;     if (_presentationPopover) {
&gt;         [_presentationPopover dismissPopoverAnimated:animated];
&gt;         [_presentationPopover setDelegate:nil];
&gt;         _presentationPopover = nil;
&gt;     }
&gt; 
&gt;     if (_presentationViewController) {
&gt;         [_presentationViewController dismissViewControllerAnimated:animated
&gt; completion:^{
&gt;             _presentationViewController = nil;
&gt;         }];
&gt;     }
&gt; }
&gt; 
&gt; 
&gt; The UIDocumentMenuViewController dismisses itself, so when
&gt; _presentationViewController dismissViewControllerAnimated:animated is called
&gt; in this function, it dismisses the WKWebView when is presented modally. 
&gt; That's why it's set to nil in this function, so that the errant code path is
&gt; never executed.
&gt; &gt; 
&gt; &gt; On iPhone, the method called just before this will call
&gt; &gt; _presentFullscreenViewController. Then this line of code will clear out the
&gt; &gt; reference to that just-presented view controller. Given that, why does this
&gt; &gt; comment talk about clearing out a &quot;previous view controller reference&quot;?</span >


Inside the call stack this is the reference that needs to be cleared out.

1. when this called
- (void)_showDocumentPickerMenu
2.It then calls this:
- (void)_presentMenuOptionForCurrentInterfaceIdiom:(UIViewController *)viewController
3. Finally, inside here the reference is saved.
- (void)_presentFullscreenViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    ...
    _presentationViewController = [UIViewController 
...
}

4. When we return up the stack, I need to unset the reference.

- (void)_showDocumentPickerMenu


I put this comment and the nil reference as close together as possible to minimize future errors.</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>