﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9305	Enter key fails if CKEditor is used in a cross domain frame	Jakub Ś	Marek Lewandowski	"Ticket based on #9217

1. Open attached file 
2. Type few chars and **press enter**.
**Results:**[[BR]]
**FF** - Error: Permission denied to access property 'parentNode' [[BR]]
**Chrome** - Unsafe JavaScript attempt to access frame with URL file:///C:/Users/Desktop/cke.html from frame with URL http://nightly.ckeditor.com/latest/ckeditor/_samples
/replacebyclass.html. Domains, protocols and ports must match. [[BR]]
**Opera** - Unhandled Error: Security error: attempted to read protected variable
**IE** - No errors.

**Proposed by @alfonsoml:** CKEditor the one that should prevent reaching the parent frame. Below is the example code for getParen method:
{{{
etParent : function()
		{
			try
			{
				var parent = this.$.parentNode;
				return ( parent && parent.nodeType == 1 ) ? new CKEDITOR.dom.node( parent ) : null;
			}
			catch (e)
			{
				return null;
			}
		},
}}}
"	Bug	closed	Normal		General	3.0	fixed	IBM Support	fiedler@… Alfonso Martínez de Lizarrondo
