[Webkit-unassigned] [Bug 60518] Expose willStartLiveResize and willEndLiveResize in WebView

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue May 10 22:00:12 PDT 2011


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





--- Comment #13 from Darin Fisher (:fishd, Google) <fishd at chromium.org>  2011-05-10 22:00:12 PST ---
(In reply to comment #10)
> The next OS X version might add a new style of overlay scrollbars that are only visible while
> a) the window is being scrolled or
> b) the window is being resized.
> To make b) happen, the scrollbars need to know if the window is being resized; that's what this is for afaiu.

so, we currently have the resize() method on WebWidget.  you can't resize an individual WebFrame, only the viewport of the topmost one.  it seems this pair of enter/exit "resizing" methods should accompany the resize() method, right?

  willBeginResizing();
  resize(size1);
  resize(size2);
  ...
  didFinishResizing();

I just picked "clean room" names that seem to go well with the action named "resize", but willStartLiveResize and willEndLiveResize work too.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list