Bug 42230

Summary: Page flashes to mostly white towards the end of loading
Product: WebKit Reporter: Simon Fraser (smfr) <simon.fraser>
Component: Layout and RenderingAssignee: Simon Fraser (smfr) <simon.fraser>
Status: RESOLVED FIXED    
Severity: Normal CC: mitz, webkit
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Mac   
OS: OS X 10.5   
URL: http://www.independent.co.uk/opinion/commentators/johann-hari/johann-hari-how-goldman-gambled-on-starvation-2016088.html
Attachments:
Description Flags
Patch mitz: review+

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. ***