Closed Bug 518642 Opened 15 years ago Closed 15 years ago

zoom level is reset when softkb is displayed

Categories

(Firefox for Android Graveyard :: General, defect)

ARM
Maemo
defect
Not set
major

Tracking

(Not tracked)

VERIFIED FIXED

People

(Reporter: jmaher, Assigned: vingtetun)

References

Details

Attachments

(1 file, 3 obsolete files)

on the n810 with the 20090924 1.9.2 nightly build, the softkb pops up and resizes the window.  This causes the zoom level to be reset.
This is bigger than a normal bug and I'm setting the blocking-fennec? flag as a result.
Severity: normal → major
tracking-fennec: --- → ?
Any window resizes are causing the zoom to reset. Fullscreen to normal for example.

We have an unprotected call to zoomToPage here:
http://mxr.mozilla.org/mobile-browser/source/chrome/content/browser.js#416

BTW, the call to hideSidebars below it is disconcerting too
Attached patch patch (obsolete) — Splinter Review
This patch fixes the bug and does some minor cleanup:
* zoomChanged was not being set on the right object: "this" -> "bvs"
* zoomChanged was not being checked in our resize code before a call to zoomToPage
* some useless whitespace was removed
* an unused & broken "clone" method was removed

One assumption: In the resize handler we call hideSidebars() and I assume this should only ever happen if we zoomToPage. So I added the perhaps redundant call to bv.onAfterVisibleMove just to make sure it was called.
Assignee: nobody → mark.finkle
Attachment #402986 - Flags: review?(pavlov)
Attachment #402986 - Flags: review?(pavlov)
Attached patch patch 2 (obsolete) — Splinter Review
updated to trunk
Attachment #402986 - Attachment is obsolete: true
Attachment #404646 - Flags: review?(webapps)
Attachment #404646 - Flags: review?(webapps) → review-
Comment on attachment 404646 [details] [diff] [review]
patch 2

>+      // Assume this was a user action and change the flag. Callers should reset
>+      // the flag if this was not in response to a user action
>+      bvs.zoomChanged = true;

Good catch.  Your comment makes me think this is a bad assumption.  zoomToPage also calls this function and is not a user-willed action: so if _resizeAndPaint is called more than once, it will not zoomToPage the second time.  IMHO we shouldn't use fit to zoom on load anyways (bug 520593), but if we do not end up doing that we should probably rethink where the zoomChanged flag is set.

>+    // zoomToPage is a non-user action, so reset the zoomChanged flag
>+    let bvs = this._browserViewportState;
>+    if (bvs)
>+      bvs.zoomChanged = false;

Ah, I see you've already figured it out.  This is a hacky solution though: ideally this flag should only be set when the user changed the zoom level.

>+      // We do not auto-zoom if the user has manually changed the zoom level
>+      if (!Browser.selectedTab.browserViewportState.zoomChanged) {
>+        bv.zoomToPage();
>+        Browser.hideSidebars();
>+      }
>+      
>+      bv.onAfterVisibleMove();
>       bv.commitBatchOperation();
>     }

The hideSidebars alarms me too--this should only be done when the window first comes up.  Is there a better place for hideSidebars?

>     bv.beginBatchOperation();
>-

I actually like begins and ends to have whitespace around them so that it is easy to tell they are matched.
Attached patch Patch v0.3 (obsolete) — Splinter Review
* adresses comments except the hideSidebars part
Attachment #404646 - Attachment is obsolete: true
Attachment #413658 - Flags: review?
Comment on attachment 413658 [details] [diff] [review]
Patch v0.3

>diff -r f305d4de5ece chrome/content/BrowserView.js
>-      bvs.zoomChanged = true;

Hmm.  I have two problems with putting this code into setVisibleRect:
1) setVisibleRect is changing the browser viewport state directly.
2) This misses incremental zoom (ctrl-up and ctrl-down).

I'm starting to feel like zoomChanged is a bad, bad flag that does not allow us to write good code.  Let's just get it functionally correct and perhaps refactor the flag away later.  Please fix #2 however you see fit and I'll r+.

>-      bv.zoomToPage();
>-      Browser.hideSidebars();
>+      if (!Browser.selectedTab.browserViewportState.zoomChanged) {
>+        bv.zoomToPage();
>+        // hidesidebars calls bv.onAfterVisibleMove();
>+        Browser.hideSidebars();
>+      }

As the comment says, hideSidebars calls onAfterVisibleMove, so there's a chance this path will not call onAfterVisibleMove even though it should.  We should probably just strike the comment and always call onAfterVisibleMove instead of being clever.
Attachment #413658 - Flags: review?(webapps) → review-
Attached patch Patch v0.4Splinter Review
* Adress comments

And because you ask I've punished the zoomChanged flag : enjoy :)
Assignee: mark.finkle → 21
Attachment #413658 - Attachment is obsolete: true
Attachment #414267 - Flags: review?(webapps)
Comment on attachment 414267 [details] [diff] [review]
Patch v0.4

I love it.  Excellent work Vivian!  I have a couple of suggestions but this is definitely the right idea.

>   handleEventImpl: function handleEventImpl(zoomlevel) {
>-	this.pendingEvent = 0;
>-	Browser.zoom(zoomlevel);
>+	  this.pendingEvent = 0;
>+	  Browser.zoom(zoomlevel);

Uh oh, I see a tab!

>+      let bvs = Browser.selectedTab.browserViewportState;
>+      if (bvs.zoomLevel == bvs.defaultZoomLevel) {
>+        bv.zoomToPage();
>+        Browser.hideSidebars();
>+        bv.onAfterVisibleMove();
>+      }

How about a function for this?  Mark is the function name master, but I think bv.updateDefaultZoomLevel() or bv.onDefaultZoomLevelChange() might be good suggestions.  The function would change the default zoom level and zoomToPage() if ZL was at the default previously.  The function could return true if there was a change so that you can call Browser.hideSidebars() here (if that's really what we want to do).

I believe you should take bv.onAfterVisibleMove() outside the if, because things outside the if could have moved things around as well.

>     bv.commitBatchOperation();
>     bv.commitOffscreenOperation();
>+
>   },

Nit.  Why the extra space?

>-      if (!this._browserViewportState.zoomChanged && !restoringPage) {
>+      if (this._browserViewportState.zoomLevel == this._browserViewportState.defaultZoomLevel && !restoringPage) {
>         // Only fit page if user hasn't started zooming around and this is a page that
>         // isn't being restored.
>         bv.zoomToPage();
>-        
>-        // zoomChanged gets set to true, but user did not change zooming
>-        this._browserViewportState.zoomChanged = false;
>       }

Just an idea: if we have the above on default zoom change, the size change handler on browser view could call it and we'd no longer have to do this code at all!  And we could get rid of suppressZoom flag!

>   startLoading: function() {
>     this._loading = true;
>-    this._browserViewportState.zoomChanged = false;
>+    this._browserViewportState.defaultZoomLevel = this._browserViewportState.zoomLevel;

Why is this here exactly?  I'm sure there's a reason, I just don't know it.

r+'ing with nits because this is fine as is, and we can always do another patch if you agree with me on the bigger stuff.
Attachment #414267 - Flags: review?(webapps) → review+
I agree with you on bigger stuff :)

I'll be happy to land this asap as possible since it blocks one of my blocker and open a followup for refactoring/enhancing our code.
(with nits)
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
verified FIXED on builds:
Mozilla/5.0 (X11; U; Linux armv7l; Nokia N900; en-US; rv:1.9.2b4pre) Gecko/20091125 Firefox/3.6b4pre Fennec/1.0b6pre

and

Mozilla/5.0 (X11; U; Linux armv6l; Nokia N8xx; en-US; rv:1.9.3a1pre) Gecko/20091125 Firefox/3.7a1pre Fennec/1.0b5
Status: RESOLVED → VERIFIED
Flags: in-litmus?
Component: Linux/Maemo → General
QA Contact: maemo-linux → general
tracking-fennec: ? → ---
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: