Closed
Bug 207477
Opened 21 years ago
Closed 21 years ago
wrong rendering of websites (after Ctrl+Shift+R)
Categories
(Core :: Web Painting, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: aha, Assigned: roc)
References
()
Details
(Keywords: testcase)
Attachments
(7 files, 2 obsolete files)
4.12 KB,
image/png
|
Details | |
4.07 KB,
image/png
|
Details | |
25.00 KB,
image/png
|
Details | |
24.87 KB,
image/png
|
Details | |
3.42 KB,
patch
|
Details | Diff | Splinter Review | |
609 bytes,
text/html; charset=UTF-8
|
Details | |
9.49 KB,
patch
|
dbaron
:
review+
dbaron
:
superreview+
|
Details | Diff | Splinter Review |
Repro:
1. go to http://www.slunecnice.cz/ or http://musicmoz.org/ for first time
or reload it with Ctrl+Shift+R
Actual:
Headers of both sides are rendered wrong, on right side are artefacts. They
disappear after fisrt reflow and page looks well, but first impression of
website (or Mozilla rendering) is very bad.
See attached screenshots.
Reporter | ||
Comment 1•21 years ago
|
||
All screenshots are from 2003052805/1.4branch/W2K
Reporter | ||
Comment 2•21 years ago
|
||
Reporter | ||
Comment 3•21 years ago
|
||
Reporter | ||
Comment 4•21 years ago
|
||
Comment 5•21 years ago
|
||
Confirming:
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030527
Saw the defects as shown in the attachments posted. Also notice problems with
the column widths in the middle of the http://musicmoz.org/ page. They changed
when refreshed.
Comment 6•21 years ago
|
||
WFM on WinXP 2003052808, but I have seen it at other sites.
Reporter | ||
Comment 7•21 years ago
|
||
Confirming according comment #5.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Flags: blocking1.4?
Summary: wrong rendering of website (after Ctrl+Shift+R) → wrong rendering of websites (after Ctrl+Shift+R)
Reporter | ||
Comment 8•21 years ago
|
||
With today branch build I was unable to reproduce on Slunecnice.cz, so I'm
clearing request to block 1.4.
But rendering is still broken with trunk build.
-> Layout: View Rendering
Assignee: other → roc+moz
Component: Layout → Layout: View Rendering
Flags: blocking1.4?
Reporter | ||
Updated•21 years ago
|
Flags: blocking1.5a?
Might this have the same cause as bug 194638?
Depends on: 194638
Reporter | ||
Comment 10•21 years ago
|
||
David: Probably yes, because rendering gets wrong after scrollbars appear.
Layout is centered and when scrollbars appear, the real center of viewport has
to move several pixels to left.
(So caused also by fixing bug 190193?)
This changes the Linux painting code so that the bug can be debugged on Linux.
This one requires clicking, but clicking twice shows something that may be
interesting.
I think the problem may be related to being missing an invalidation codepath
for the relevant case for when a block moves -- but we're getting most of the
invalidation thanks to the size change.
Attachment #127388 -
Attachment is obsolete: true
Note that if I change the 'width: 50%' in attachment 127499 [details] to 'width: 10em'
(i.e., from percentage width to fixed width), there's no invalidation at all,
and I need to move another window over part of the document to see that
something has moved.
Assignee | ||
Comment 15•21 years ago
|
||
While poking around, I noticed that nsBlockReflowContext::mBlockShouldInvalidate
is always PR_FALSE and should be removed.
Assignee | ||
Comment 16•21 years ago
|
||
This fixes it. I think it's the right thing.
Assignee | ||
Comment 17•21 years ago
|
||
I assume that the intent of passing PR_FALSE into aDamageDirtyArea in
nsBlockFrame::DirtyLine is to avoid unnecessary invalidations if the entire
block is going to be repainted anyway. This is not the case for a Resize reflow.
By the way, I've noticed (with paint flashing) that when we resize a browser
window, the entire window contents is repainted no matter what.
How about calling this |forceInvalidate| and getting rid of the other
|forceInvalidate|, and getting rid of |BRS_DAMAGECONSTRAINED| too, since it's
never set? (It was an old optimization for text inputs before we had reflow roots.)
And feel free to get rid of mBlockShouldInvalidateItself too. (It's obviously
broken if it were used, since the |Invalidate| calls use |mRect|, which is in
the wrong coordinate system.)
Assignee | ||
Comment 20•21 years ago
|
||
includes the cleanups suggested by dbaron. Also includes a few fixes for
warnings I'm heartily sick of.
Attachment #127675 -
Attachment is obsolete: true
Comment on attachment 127683 [details] [diff] [review]
better fix
> // Check whether this is an incremental reflow
>- PRBool incrementalReflow = aState.mReflowState.reason ==
>- eReflowReason_Incremental ||
>- aState.mReflowState.reason ==
>- eReflowReason_Dirty;
>+ PRBool doInvalidates =
>+ aState.mReflowState.reason == eReflowReason_Incremental
>+ || aState.mReflowState.reason == eReflowReason_Dirty
>+ || aState.mReflowState.reason == eReflowReason_Resize;
Could you put the || at the end of the line to be consistent with the existing
style?
> rv = ReflowLine(aState, line, &keepGoing, forceInvalidate);
and rename the variable where you use it, too?
>+ rv = ReflowLine(aState, line, &keepGoing, forceInvalidate);
here too?
Perhaps it would be better to use NS_STATIC_CAST(void*, ...) rather than
(void*) to be consistent with the casts already there?
Once you compile, and with those changes, r+sr=dbaron.
Attachment #127683 -
Flags: superreview+
Attachment #127683 -
Flags: review+
Assignee | ||
Comment 22•21 years ago
|
||
oops ... I decided to change the name to doInvalidate at the last minute.
forceInvalidate is a misnomer since the default behavior is with it set to
PR_TRUE; setting it to PR_FALSE is an optimization.
I'll do all you suggest, including using NS_STATIC_CAST. Thanks.
Assignee | ||
Comment 23•21 years ago
|
||
fixed
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 24•21 years ago
|
||
Works fine with 2003071508/trunk/W2K on both sites and testcase. Thanx!
v=aha
Status: RESOLVED → VERIFIED
Blocks: 195598
Blocks: 204289
Updated•6 years ago
|
Component: Layout: View Rendering → Layout: Web Painting
You need to log in
before you can comment on or make changes to this bug.
Description
•