Comment 3 for bug 1649554

Revision history for this message
Chris Perry (clissold345) wrote :

I did a bzr pull to get Gunnar's fix and did a test by temporarily changing my local copy of mouse-mousekeys.page. Yes the fix seems to work. If type isn't specified in the <list> element, you get bullets in the html. It looks like the "disc" bullets. So:

<list>
  <item><p>First</p></item>
  <item><p>Second</p></item>
  <item><p>Third</p></item>
</list>

gives you:

<list type="disc">
  <item><p>First</p></item>
  <item><p>Second</p></item>
  <item><p>Third</p></item>
</list>

I haven't noticed any (glaring) undesired side effects so far.