﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8561	Unexpected lists get created when selecting nested divs	Damian		"1. Start with the following content:
{{{
  <div>Line 1</div>
  <div>Line 2</div>
}}}
2. In WYSIWYG, select both lines:
{{{
  <div>^Line 1</div>
  <div>Line 2^</div>
}}}
3. Copy using ctrl+c and paste (ctrl+v) at the end of Line 1:
{{{
  <div>Line 1^</div>
  <div>Line 2</div>
}}}
4. The result is something like:
{{{
<div>
	Line 1<br />
	<div>
		Line 1</div>
	<div>
		Line 2</div>
</div>
<div>
	Line 2</div>
}}}
5. Select all four lines and create a list. 

'''Result:''' multiple lists are created from the selection

'''Expected:''' a single list is created with all four lines

''Note:'' The expected behavior is derived from two things. The first is that the content appears to be flat from the user's point of view and selecting it should result in a flat list. And secondly, when a similar test case is attempted using the native browser execCommand('InsertOrderedList') call, the list that is created is a single list with four items."	Bug	confirmed	Normal		Core : Lists			IBM	Teresa Monahan satya_minnekanti@…
