I take new DOCX document with a single run and try to add
<w:style w:type="character" w:default="1" w:styleId="QQQ">
<w:rPr>
<w:b/>
</w:rPr>
</w:style>
into word/styles.xml/w:styles. I expect to see text inside my only run bold, but i don't. Run has no references to any other styles. If I change w:type to "paragraph", then my run becomes bold. From ECMA-376, it seems that style with type='character' should affect all runs. If it doesn't, what is the purpose of w:type="character"?
Thanx