New list item should not copy the value attribute from previous list item
Right now there is no way to set the value attribute, but after closing #7131 we will have this problem.
Steps to reproduce
- Start with
<ol>
<li value="7">
Foo</li>
</ol>
- Press enter.
- Result:
<ol>
<li value="7">
Foo</li>
<li value="7">
</li>
</ol>
- Expected result:
<ol>
<li value="7">
Foo</li>
<li>
</li>
</ol>
Change History (6)
Status: |
new →
confirmed
|
Type: |
Bug →
New Feature
|
Milestone: |
→ CKEditor 3.5.3
|
Owner: |
set to Sa'ar Zac Elias
|
Status: |
confirmed →
review
|
Status: |
review →
review_passed
|
Resolution: |
→ fixed
|
Status: |
review_passed →
closed
|
Fixed with [6552].