Moved the freezing of paint on load of a new url from provisionalLoadStarted to commi...
authorDevdatta Deshpande <d.deshpande@partner.samsung.com>
Mon, 5 Aug 2013 13:31:56 +0000 (19:01 +0530)
committerEunmi Lee <eunmi15.lee@samsung.com>
Wed, 11 Sep 2013 01:49:14 +0000 (10:49 +0900)
commit55e1a69f7a096c9635e93b2456bba4461039b520
treed9e5e8d29efd7216618eaec0187a4598236dfc10
parent3c5107f0c5a5b60b4cc17bf6f2576606c012ed55
Moved the freezing of paint on load of a new url from provisionalLoadStarted to committedLoad

[Title]    [Alexa100-5Category]: Combo box is unable to display selected value
[Issue#]   WEB-3772, WEB-3732
[Problem]  On selection change of a drop-down box a new page was being loaded. But the changed value was
           not getting updated in the drop-down box
[Cause]    The painting is suspended for current page in WebFrameLoaderClient::provisionalLoadStarted
           i.e. when the page load starts for new page.
[Solution] Moved suspending of paint from provisional load start to WebFrameLoaderClient::committedLoad. So
           the paint for current page will now be suspended only when the first data for next page is received.
[Cherry-picker] Eunmi Lee - cherry pick this patch to fix N_SE-50906.

Change-Id: If30bc1117128841585b195a121c63874d174d613
Source/WTF/wtf/Platform.h
Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp