31 May
2023
31 May
'23
1:55 p.m.
On Wed May 31 13:22:35 2023 +0000, David Kahurani wrote:
I'm not sure this is NCName because it accepts colons, just not more than one colon. Test passes: ``` hr = IXmlWriter_WriteName(writer, L"na:me"); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); ``` More than one colon gets rejected, test passes: ``` hr = IXmlWriter_WriteName(writer, L"a:a:a"); ok(hr == WC_E_NAMECHARACTER, "Unexpected hr %#lx.\n", hr); ``` This led me to believe a qualified name is expected. Unfortunately I hadn't included the first test because I wasn't sure what to include.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2928#note_34222