Hi Paul,
Paul Vriens wrote:
Changelog Fix 2 test failures on IE8
- ok(disp == (void*)0xdeadbeef, "disp=%p\n", disp); + ok(disp == (void*)0xdeadbeef || + disp == NULL, /* IE8 */
This test does no longer make sense. It would be better to remove it and preferably change implementation to match IE8.
Thanks, Jacek
Jacek Caban wrote:
Hi Paul,
Paul Vriens wrote:
Changelog Fix 2 test failures on IE8
ok(disp == (void*)0xdeadbeef, "disp=%p\n", disp);
ok(disp == (void*)0xdeadbeef ||
disp == NULL, /* IE8 */
This test does no longer make sense. It would be better to remove it and preferably change implementation to match IE8.
Thanks, Jacek
Hi Jacek,
Something like the attached?
Paul Vriens wrote:
Jacek Caban wrote:
Hi Paul,
Paul Vriens wrote:
Changelog Fix 2 test failures on IE8
ok(disp == (void*)0xdeadbeef, "disp=%p\n", disp);
ok(disp == (void*)0xdeadbeef ||
disp == NULL, /* IE8 */
This test does no longer make sense. It would be better to remove it and preferably change implementation to match IE8.
Thanks, Jacek
Hi Jacek,
Something like the attached?
Yes, it looks good.
Thanks, Jacek