WordPress-Editor-Android
WordPress-Editor-Android copied to clipboard
Glitchy list behavior inside a blockquote (Samsung S3, API 18)
As originally reported in #153 here. Seems to be isolated to the S3 device specifically.
Video of it: https://cloudup.com/coESBG3V_tj
@aforcier would you mind double checking this issue again after #226 lands?
@bummytime still happening I'm afraid :/
@aforcier no worries. I don't have an S3 available to me and can't seem to repro this issue so I was just crossing my fingers :-)
Confirming this bug still occurs on the S3, and on no other device or emulator I've tested.
When focused on a list item inside a blockquote, pressing the list item again indents the list item further. The list splits, with the current element being added to a new list, wrapped in a div and further wrapped in another blockquote element, with style applied:
<blockquote>
<div>BQ line 1.</div>
<div>
<ul>
<li>List item 1</li>
</ul>
<!-- buggy element start -->
<blockquote style="display: inline !important; ">
<div style="display: inline !important; ">
<ul style="display: inline !important; ">
<li style="display: inline !important; ">List item 2</li>
</ul>
</div>
</blockquote>
<!-- buggy element end -->
<br>
</div>
</blockquote>
I'm keeping this bug open in case we get future reports of this or related bugs, but if it's limited to lists within blockquotes on older Samsung devices only I'm not sure that it's worth fixing.