Jacek Caban (@jacek) commented about dlls/mshtml/tests/documentmode.js:
+ } + + // get rid of any entries first by polling, since native doesn't update immediately + var w = [ window, iframe.contentWindow ]; + for(var j = 0; j < w.length; j++) + w[j].onstorage = w[j].document.onstorage = w[j].document.onstoragecommit = null; + do { storage.clear(); } while(storage.length !== 0); + + i = 0, local = true; + setTimeout(function() { tests[0](); }); + } + else + next_test(); + } + + function test_event(e, key, oldValue, newValue) { While checking something else, I added a trace here and noticed that there are more test_event() calls on native than on Wine, I didn't check deeper, but is it expected?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/795#note_8330