- 
    Bug 
- 
    Resolution: Fixed
- 
     Not Evaluated Not Evaluated
- 
    6.8.3
- 
    None
- 
    macOS 15.6
When rendering HTML content inside a QML Text element, list items (<li>) with inline styles such as style='margin-left: 0;' do not display correctly. Specifically, the bullet points are missing or the layout is broken, even though the structure is valid HTML(see attached screen).
HTML Example:
Text {
    textFormat: Text.RichText
    text: "<ul>
              <li style='margin-left: 0;'>Item One</li>
              <li style='margin-left: 0;'>Item Two</li>
           </ul>"
}