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.