Index: /CKEditor/tests/tt/5315/1.html
===================================================================
--- /CKEditor/tests/tt/5315/1.html	(revision 7169)
+++ /CKEditor/tests/tt/5315/1.html	(revision 7169)
@@ -0,0 +1,42 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #5315 - Escaping from Quotation</title>
+	<meta name="tags" content="editor,manual,all,styles">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+		YAHOO.util.Event.removeListener( window, 'load' );
+		window.onload = function ()
+		{
+			CKEDITOR.replace( 'editor1' , 	
+			{
+				docType: '',
+				on: 
+				{
+					pluginsLoaded: function(evt)
+					{
+						evt.editor.addCss('blockquote {padding: 1px;border: 1px solid purple;'
+							+'background-color: #e9e9e9;margin: 0px}');
+					}
+				}
+			} );
+		}
+	</script>
+</head>
+<body>
+<pre>
+=== TC1 === 
+ 1. Click on empty space under quotation
+  * Usual behaviour of CKEditor: blinking cursor is visible still inside quotation. No additional paragraph is added outside quotation.
+ 1. Set caret at the end ot text in quotation
+ 1. Press enter
+ 1. Press ''Quote'' button on toolbar
+  * Expected: Newly created paragraph in quotation is placed outside quote. Style is removed
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+	&lt;blockquote&gt;&lt;p&gt;A quote&lt;/p&gt;&lt;/blockquote&gt;
+</textarea>
+</body>
+</html>
