diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-18 20:44:06 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-18 20:44:06 +0000 |
commit | fca446b95923a78ac6fa26f904dec9d71d63354d (patch) | |
tree | 3939b76e54991e515409ff1d53e7593fc2795d88 /chrome_frame | |
parent | ed14ef75085720093abc6b7feb917e9eb8855b2e (diff) | |
download | chromium_src-fca446b95923a78ac6fa26f904dec9d71d63354d.zip chromium_src-fca446b95923a78ac6fa26f904dec9d71d63354d.tar.gz chromium_src-fca446b95923a78ac6fa26f904dec9d71d63354d.tar.bz2 |
Removing WS_EX_CLIENTEDGE from the extended styles for the ChromeFrame active document. This
fixes parts of bug http://code.google.com/p/chromium/issues/detail?id=55764
On IE9 a border is still drawn around all mshtml windows, which does not happen with ChromeFrame.
This needs more investigation.
BUG=55764
TEST=Launch IE9 and navigate to a ChromeFrame enabled page. The ChromeFrame page should not
have a client edge border.
Review URL: http://codereview.chromium.org/6531022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75427 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/chrome_active_document.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/chrome_active_document.cc b/chrome_frame/chrome_active_document.cc index 2fc4a00..f0a2e76 100644 --- a/chrome_frame/chrome_active_document.cc +++ b/chrome_frame/chrome_active_document.cc @@ -584,7 +584,7 @@ HRESULT ChromeActiveDocument::ActiveXDocActivate(LONG verb) { ::ShowWindow(m_hWnd, SW_SHOW); SetFocus(); } else { - m_hWnd = Create(parent_window, position_rect, 0, 0, WS_EX_CLIENTEDGE); + m_hWnd = Create(parent_window, position_rect); if (!IsWindow()) { // This might happen if the automation server couldn't be // instantiated. If so, a NOTREACHED() will have already been hit. |