Jacek Caban : mshtml: Test contentWindow interfaces of frame and iframe elements.
Module: wine Branch: master Commit: 0ec75b1a5f4dd71f5ae62f20a634e5661d975eab URL: http://source.winehq.org/git/wine.git/?a=commit;h=0ec75b1a5f4dd71f5ae62f20a6... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Mon Aug 13 11:03:02 2012 +0200 mshtml: Test contentWindow interfaces of frame and iframe elements. --- dlls/mshtml/tests/dom.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index 561af14..760580e 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -4975,6 +4975,7 @@ static void test_frame_doc(IUnknown *frame_elem, BOOL iframe) HRESULT hres; content_window = get_frame_content_window(frame_elem); + test_ifaces((IUnknown*)content_window, window_iids); window_doc = get_window_doc(content_window); IHTMLWindow2_Release(content_window); @@ -5025,6 +5026,7 @@ static void test_iframe_elem(IHTMLElement *elem) test_framebase((IUnknown*)elem); content_window = get_frame_content_window((IUnknown*)elem); + test_ifaces((IUnknown*)content_window, window_iids); test_window_length(content_window, 0); content_doc = get_window_doc(content_window);
participants (1)
-
Alexandre Julliard