Bug 42230 - Page flashes to mostly white towards the end of loading
Summary: Page flashes to mostly white towards the end of loading
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Layout and Rendering (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac OS X 10.5
: P2 Normal
Assignee: Simon Fraser (smfr)
URL: http://www.independent.co.uk/opinion/...
Keywords: InRadar
: 42838 (view as bug list)
Depends on:
Blocks:
 
Reported: 2010-07-13 21:25 PDT by Simon Fraser (smfr)
Modified: 2010-07-27 18:31 PDT (History)
2 users (show)

See Also:


Attachments
Patch (7.11 KB, patch)
2010-07-13 21:50 PDT, Simon Fraser (smfr)
mitz: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Simon Fraser (smfr) 2010-07-13 21:25:00 PDT
The page in the URL shows a white flash towards the end of loading (when some Flash content is loading).

<rdar://problem/8155738>
Comment 1 Simon Fraser (smfr) 2010-07-13 21:50:38 PDT
Created attachment 61466 [details]
Patch
Comment 2 mitz 2010-07-13 21:54:47 PDT
Comment on attachment 61466 [details]
Patch

> +        as the dimensions, to ensure the layer appers on the correct place.

Typo: “appers on”

> +    FloatSize usedSize = m_size;
> +    if (m_usingTiledLayer)
> +        usedSize = constrainedSize();

I’d write this as
    FloatSize usedSize = m_usingTiledLayer ? constrainedSize() : m_size;
but the compiler probably doesn’t care.

r=me!
Comment 3 Simon Fraser (smfr) 2010-07-13 22:03:15 PDT
http://trac.webkit.org/changeset/63283
Comment 4 Mark Rowe (bdash) 2010-07-27 18:31:12 PDT
*** Bug 42838 has been marked as a duplicate of this bug. ***