27 May
2025
27 May
'25
12:08 p.m.
Jacek Caban (@jacek) commented about dlls/mshtml/tests/documentmode.js:
test_exposed("fileSize", v < 11); });
+sync_test("attr_props", function() { + var v = document.documentMode, elem = document.createElement("div"), attr; + + /* FIXME: Wine's IE9+ attributes don't sync with our attribute node implementation which is based on legacy attrs */ + if(!broken(true))
Please don't abuse `broken()` like that, we don't want to test different things on Wine and Windows. If `todo_wine` is not enough, you may just skip the test until it's ready. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8150#note_104658