Closed Bug 1653389 Opened 4 years ago Closed 4 years ago

Validate the page range setting

Categories

(Toolkit :: Printing, enhancement, P1)

enhancement

Tracking

()

VERIFIED FIXED
81 Branch
Tracking Status
firefox81 --- verified

People

(Reporter: mstriemer, Assigned: emmamalysz)

References

(Regressed 1 open bug)

Details

(Whiteboard: [print2020_v81])

Attachments

(3 files, 2 obsolete files)

We'll want to validate the page range setting. At first we will only support a single page, or a single page range.

The total number of pages is currently shown in the existing print preview UI, this is returned by PrintingChild when the preview is updated [1]. We'll likely need the preview hooked up before we can get this value.

What we'll want to validate is basically that the text matches the format x or x-y (where x and y are both integers), then that 1 <= x <= y <= PAGE_COUNT.

[1] https://searchfox.org/mozilla-central/rev/1b95a0179507a4dc7d4b0c94c2df420dc1a72885/toolkit/components/printing/content/printPreviewToolbar.js#448-453

Whiteboard: [print2020_v80] → [print2020_v81]
Assignee: nobody → emalysz
Status: NEW → ASSIGNED
Depends on: 1659005

Sorry for spam; disregard comment 2-3. (bug number copypaste error)

Matches scale naming format.

Attachment #9166939 - Attachment description: Bug 1653389, validate page range setting and show error message → Bug 1653389, validate page range setting

Right now the patches here are two independent phabricator pages; I suspect you want to link them into a stack, using the "edit related revisions" at the top right of one or them. (Then you can land them together, assuming that's your intent.)

Flags: needinfo?(emalysz)

Also, there are a few usability/papercut issues that I'm noticing, when testing with these patches applied (which I'm doing while looking into an implementation strategy for bug 1659005). We can spin these issues off as one or more followups after this lands, too, but I'm not sure if it's better to address them up-front?

STR:

  1. Apply both patches on this bug to mozilla-central.
  2. Start a print operation, and choose "Pages: Custom"
  3. Click the right edge of the "from" or "to" text field
  4. Press the backspace key (e.g. pretend you're just getting ready to type in the From/To value that you'd like, which means you have to clear the field first, of course)

ACTUAL RESULTS:

  • The red error text and border appears, chastising me about having chosen an invalid page range (simply due to having an empty text field)
  • Most of the settings/controls suddenly become disabled. The dialog now forces me to fix this field before it will let me do anything else, it seems.
  • Also, the error text occupies space and pushes content down out of the way (which feels jumpy)

EXPECTED RESULTS:

  • I would expect the error text to not appear yet when I've simply backspaced the number -- it should give me a "grace period" while I'm editing the text field. That's how form validation works normally, e.g. at data:text/html,<input type="number" value="5" min="5" max="10"><input type="text"> which has a number field that only accepts values from 5-10 -- in this example, I can focus that number field, clear the value with my backspace key, and type in an invalid number, and the field doesn't change to highlight the error until I move focus outside of the field (e.g. by hitting tab or clicking the other field). I would expect the From/To fields to behave the same way.
  • When the field is in an "invalid value" state, I would expect the rest of the print settings area to nonetheless remain useful. E.g. maybe I started to edit my page range, and then realized I want to print in Landscape mode or choose a different page size -- it feels overly strict for Firefox to force me to fix my page range before it'll let me change those things (which pretty much invalidate my page range anyway)
  • Furthermore, when the field is in an "invalid value" state, I would expect printing to still be possible -- we should just treat the invalid field as if it contained the most-extreme-acceptable value in that field (e.g. treat invalid input as "1" for the "from" field, and treat invalid input as "number-of-pages" for the "to" field). We could either do this implicitly or explicitly (filling in the value for the user - why make them type it?) In fact, this is what already happens if I click "Print using the system dialog" after having typed in a bogus value for part of the range.
  • Also: cosmetically, it feels odd for the error text to move things around in the dialog. Ideally, we should warn the user in a way that doesn't push other settings/UI out of the way.

(I guess comment 7 largely applies to the "Scale" field as well, which has similar behavior. So maybe that's all out of scope for this particular bug.)

Thanks for reviewing this, Daniel! This is all really helpful.

I'll add a timeout (similar to the one for percent scale) to avoid the problem you were seeing in #1. I can add that to the second patch.
For #2/3, that was expected behavior detailed in Bug 1656057. Maybe we should file a follow up? Mark, do you have a preference?
We do want to disable printing when anything in the form is invalid, and the behavior of #3 matches other browsers.
I can file a follow up for #4 to better format the error messages.

Flags: needinfo?(emalysz)
Flags: needinfo?(mstriemer)

I'll add a timeout (similar to the one for percent scale) to avoid the problem you were seeing in #1. I can add that to the second patch.

I just noticed the timeout only applies to sending the update, not showing the error message. I'm going to create a follow up bug to cover this since it's applicable to scaling as well.

See Also: → 1659910

Delaying the error and not showing the error when the field is empty sound good to me.

For disabling the form elements, that's what Chrome and Edge do and we didn't have any error state mock ups so we copied it. We should be disabling the "Print using the system dialog..." as well I think. I agree that the disabling can be a bit annoying if you want to change some other setting that will affect it, we could potentially just disable the Print/Save button and dialog link. I think disabling the other elements helps bring focus to what needs to be changed, though.

Unfortunately I think we'll need to live with the error message pushing other content down for now. I don't think we have time to implement another solution, as Emma said this is also what Chrome and Edge do.

Flags: needinfo?(mstriemer)
Blocks: 1659302

One other issue I noticed with the patch (as of this morning at least, when I last applied it for my local build):

If you provide a range From: [large-but-valid page] to [smaller valid page], e.g. "From 5 to 1" in a 10-page document, then our error message doesn't make sense. We highlight the "From" field as invalid, and we say Range must be a number between 1 and 10; but the value that I've given (5) is a number between 1 and 10.

(We might need a second error message for that condition, to say e.g. The "from" page cannot be larger than the "to" page)

Lando could not land the patches, please rebase.

Flags: needinfo?(emalysz)
Pushed by btara@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/dae38df00129 validate page range setting r=sfoster,mstriemer,fluent-reviewers,flod https://hg.mozilla.org/integration/autoland/rev/a7d229c67a22 show error if page range input is invalid r=fluent-reviewers,sfoster,flod
Flags: needinfo?(emalysz)
Keywords: leave-open
Attachment #9171080 - Attachment is obsolete: true
Pushed by malexandru@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/74b3ba7e7ac0 show clearer error message if the start range is greater than the end range r=fluent-reviewers,mstriemer,flod
Status: ASSIGNED → RESOLVED
Closed: 4 years ago
Keywords: leave-open
Resolution: --- → FIXED

I think the last patch needs a request for beta approval?

Flags: needinfo?(emalysz)

Comment on attachment 9171087 [details]
Bug 1653389, show clearer error message if the start range is greater than the end range

Beta/Release Uplift Approval Request

  • User impact if declined: A user will see a less specific error message, which could be confusing.
  • Is this code covered by automated tests?: No
  • Has the fix been verified in Nightly?: Yes
  • Needs manual test from QE?: Yes
  • If yes, steps to reproduce: 1. Open nightly
  1. Ensure print.tab_modal.enabled is turned on
  2. Print a page (command + P) with multiple pages (ex: about:home)
  3. Flip page range from "All" to "Custom"
  4. Specify start range as 2
  5. Specify end range as 1
  6. Notice error message displayed is The “from” page number must be smaller than the “to” page number.
  7. Type in an invalid range for either display (eg. x)
  8. Notice error message displayed is Range must be a number between 1 and...
  • List of other uplifts needed: None
  • Risk to taking this patch: Low
  • Why is the change risky/not risky? (and alternatives if risky):
  • String changes made/needed:
Flags: needinfo?(emalysz)
Attachment #9171087 - Flags: approval-mozilla-beta?
Flags: qe-verify+
QA Whiteboard: [qa-triaged]
Regressions: 1660991
Target Milestone: --- → 82 Branch
Target Milestone: 82 Branch → 81 Branch

Comment on attachment 9171087 [details]
Bug 1653389, show clearer error message if the start range is greater than the end range

This landed on m-c prior to the merge to Beta AFAICT.

Attachment #9171087 - Flags: approval-mozilla-beta? → approval-mozilla-beta-
Regressions: 1661264

This is verified fixed using Firefox 81.0b2 (BuildId:20200825191644) on Windows 10 64bit, macOS 10.14 & Ubuntu 20.04

Status: RESOLVED → VERIFIED
Flags: qe-verify+
No longer regressions: 1661264
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: