I am currently working on displaying a complex XML document as a webpage in Firefox using a stylesheet. One of the challenges I'm facing is that within one of the tags, the content itself is included in the attribute value.
<projectMember>
<Role roleType="CHANGE ADMINISTRATOR III"/>
</projectMember>
<projectMember>
<Role roleType="CHANGE ADMINISTRATOR I"/>
</projectMember>
My goal is to showcase the value of roleType in Firefox using CSS selectors without resorting to XSLT or JavaScript, with modifying the XML source being a last-resort option.