Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

insertOrderedList: Implement swapping the list and a <div> #59

Open
hajimehoshi opened this issue Sep 26, 2014 · 0 comments
Open

insertOrderedList: Implement swapping the list and a <div> #59

hajimehoshi opened this issue Sep 26, 2014 · 0 comments

Comments

@hajimehoshi
Copy link
Contributor

w3c.78 says

<div contenteditable>
  <ul>
    <li><div>^foo|</div>bar</li>
    <li>baz</li>
  </ul>
</div>

is expected to be changed into

<div contenteditable>
  <div>
    <ol>
      <li>^foo|</li>
    </ol>
  </div>
  bar<br>
  <ul>
    <li>baz</li>
  </ul>
</div>

.

@hajimehoshi hajimehoshi changed the title insertOrderedList: Implement swapping the list and div insertOrderedList: Implement swapping the list and a <div> Sep 26, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant