From cb36e5d0ab1dfbc094f7ad9f9ac9defe146e3526 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Fri, 10 Apr 2015 10:56:23 +0000 Subject: [PATCH] [MSHTML] - Remove nsIDOMWindowUtils::SetCriticalDisplayPortForElement, as it's no longer present in Gecko. Fixes stack corruption when exiting IE. CORE-9513 svn path=/trunk/; revision=67135 --- reactos/dll/win32/mshtml/nsiface.idl | 1 - 1 file changed, 1 deletion(-) diff --git a/reactos/dll/win32/mshtml/nsiface.idl b/reactos/dll/win32/mshtml/nsiface.idl index d7ced566e7c..cbdafac1842 100644 --- a/reactos/dll/win32/mshtml/nsiface.idl +++ b/reactos/dll/win32/mshtml/nsiface.idl @@ -2948,7 +2948,6 @@ interface nsIDOMWindowUtils : nsISupports nsresult SetDisplayPortMarginsForElement(float aLeftMargin, float aTopMargin, float aRightMargin, float aBottomMargin, uint32_t aAlignmentX, uint32_t aAlignmentY, nsIDOMElement *aElement, uint32_t aPriority); nsresult SetDisplayPortBaseForElement(int32_t aX, int32_t aY, int32_t aWidth, int32_t aHeight, nsIDOMElement *aElement); - nsresult SetCriticalDisplayPortForElement(float aXPx, float aYPx, float aWidthPx, float aHeightPx, nsIDOMElement *aElement); nsresult SetResolution(float aXResolution, float aYResolution); nsresult GetResolution(float *aXResolution, float *aYResolution); nsresult GetIsResolutionSet(bool *aIsResolutionSet);