﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12038	Method insertElement should be aware of Blink bug	Jakub Ś		"Currently when you have image with relative path in contenteditable element and decide to copy paste it you will see image path being converted to absolute one. Some users may not like it.

This is not a problem in CKEditor most of the times when you copy paste images that are in editor. CKEditor uses {{{data-cke-saved-src}}} custom attribute which deals with this Blink bug. There is however one specific case.

1. Use below code to insert image into editor
{{{
var value = ""<img src =""../ball.jpg"" style=""width:100px"" />';
var element = CKEDITOR.dom.element.createFromHtml(value);
editor.insertElement( element );
}}}
2. Copy/paste image next to existing one.
3. Get editor data.
**Result:** Path is src attribute is changed because {{{data-cke-saved-src}}} is not used in this case.

**Proposed solution:**  Insert element could be made aware of this issue and insert {{{data-cke-saved-src}}} when it deals with images on Blink browsers.
"	Bug	closed	Normal		General	4.0	invalid	Blink	
