Full page mode: moving image creates another body element
Confirmed on Chrome @ Mac using the full page sample.
Steps to reproduce
- Start with the following source:
<html>
<head>
<title>Full page sample</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
</head>
<body>
<p>
aaa</p>
<p>
bbb<img alt="" src="http://a.cksource.com/c/1/inc/img/demo-little-red.jpg" style="width: 120px; height: 168px; " /></p>
<p>
ccc</p>
<p>
ddd</p>
</body>
</html>
- Move image one line below
- Result:
<html>
<head>
<title>Full page sample</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
</head>
<body>
<p>
aaa</p>
<p>
bbb</p>
</body>
</html>
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type" />
<body>
<p>
<img alt="" src="http://a.cksource.com/c/1/inc/img/demo-little-red.jpg" style="width: 120px; height: 168px; " />ccc</p>
<p>
ddd</p>
</body>
Change History (5)
Resolution: |
→ fixed
|
Status: |
confirmed →
closed
|
Similar issue: #7538