Jacek Caban wrote:
dlls/urlmon/tests/misc.c | 78 +++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 77 insertions(+), 1 deletions(-)
Hi Jacek,
I'm checking out a test failure on a fresh and clean W2K3 box with SP2 and IE6.
Right after this (line 859):
+ policy = 0xdeadbeef; + hres = IInternetZoneManager_GetZoneActionPolicy(zonemgr, 3, action, (BYTE*)&policy, + sizeof(DWORD), URLZONEREG_DEFAULT);
I get a popup asking if I want to add www.winehq.org to the "Trusted sites zone". If I don't add this site the test succeeds. If I add it the test fails (over and over again).
I didn't change any of the default IE6 (W2K3 specific?) security settings. I do see that adding this site to that zone doesn't change the content of the checked registry key but instead a new one is created:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\winehq.org
and
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\winehq.org\www
with a 'http' REG_DWORD (value = 2) underneath that last one.
So how should we proceed fixing/changing this test?
Paul Vriens wrote:
So how should we proceed fixing/changing this test?
Unfortunately I don't have win2k3 to test it myself. My guess is that one of polices we test is a special case (URLACTION_ACTIVEX_OVERRIDE_OBJECT_SAFETY looks like a good candidate), so we could change it to test other policy or remove the test. Could you please check it?
Thanks, Jacek