Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Issue 159717: Don't call NPP_SetWindow during the painting of windowless plugins.... (Closed)

Created:
11 years, 4 months ago by dglazkov
Modified:
9 years, 6 months ago
CC:
chromium-reviews_googlegroups.com, darin (slow to review)
Base URL:
svn://chrome-svn.corp.google.com/chrome/trunk/src/
Visibility:
Public.

Description

Don't call NPP_SetWindow during the painting of windowless plugins. On Windows, Flash seems to only start executing script actions after it received an NPP_SetWindow with a non-NULL NPWindow.window (HDC). It is possible that Flash then invokes JS to modify DOM of the page. If Flash movie's widget is on-screen at page load, this call is made during layout and before even the NPP_Write is called, which is the desired sequence of events. However, if it is off-screen, this call occurs during painting, which leads to re-entrancy issues (layout while painting) and bizarre crashes. As a solution, we remove calls to NPP_SetWindow during painting and instead opt to never provide a null HDC to the plugin. If no valid HDC is available, we feed it a disposable monochrome 1x1 context to have at least something to draw on. R=ananta,darin,jam BUG=16114 TEST=LayoutTests/plugins/flash-setwindow-paint-crash.html (bug reduction). Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=22383

Patch Set 1 #

Patch Set 2 : '' #

Patch Set 3 : Commented and prettified #

Patch Set 4 : Removed extra line break #

Total comments: 2

Patch Set 5 : With plugin test. #

Patch Set 6 : Fix for url_request_mock_http_job move. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+63 lines, -35 lines) Patch
M chrome/test/plugin/plugin_test.cpp View 5 5 chunks +28 lines, -16 lines 0 comments Download
M webkit/glue/plugins/webplugin_delegate_impl.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M webkit/glue/plugins/webplugin_delegate_impl.cc View 1 2 3 4 5 4 chunks +33 lines, -19 lines 0 comments Download

Messages

Total messages: 7 (0 generated)
dglazkov
11 years, 4 months ago (2009-07-31 21:49:08 UTC) #1
darin (slow to review)
LGTM Please add a test... perhaps to chrome/test/plugin/plugin_tests.cpp since that test framework allows you to ...
11 years, 4 months ago (2009-07-31 22:43:49 UTC) #2
jam
so if a flash module decided to mess with the dom during paint, we still ...
11 years, 4 months ago (2009-07-31 23:50:34 UTC) #3
darin (slow to review)
Yeah... but let's hope that they don't do that :-) -Darin On Fri, Jul 31, ...
11 years, 4 months ago (2009-08-01 01:23:06 UTC) #4
ananta
LGTM with Darin's comments about a test case addressed. If Safari also suffers from this ...
11 years, 4 months ago (2009-08-01 01:34:11 UTC) #5
dglazkov
11 years, 4 months ago (2009-08-04 15:35:46 UTC) #6
darin (slow to review)
11 years, 4 months ago (2009-08-04 16:28:40 UTC) #7
LGTM

Powered by Google App Engine
This is Rietveld 408576698