Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6580)
+++ /CKEditor/trunk/CHANGES.html	(revision 6581)
@@ -42,4 +42,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/4890">#4890</a> : Added the possibility to edit the <code>rel</code> attribute for links.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/7004">#7004</a> : Allow loading plugin translations even if they aren't present in the plugin definition.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/7315">#7315</a> : Fire the 'resize' event on dialog instances.</li>
 	</ul>
 	<p>
Index: /CKEditor/trunk/_source/plugins/dialog/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/dialog/plugin.js	(revision 6580)
+++ /CKEditor/trunk/_source/plugins/dialog/plugin.js	(revision 6581)
@@ -633,4 +633,11 @@
 					{
 						dialog : this,
+						skin : this._.editor.skinName,
+						width : width,
+						height : height
+					}, this._.editor );
+
+				this.fire( 'resize',
+					{
 						skin : this._.editor.skinName,
 						width : width,
@@ -1276,5 +1283,5 @@
 			 * 	{
 			 * 		editor.addCommand( 'mydialog',new CKEDITOR.dialogCommand( 'mydialog' ) );
-			 *  
+			 *
 			 * 		if ( editor.contextMenu )
 			 * 		{
@@ -1291,5 +1298,5 @@
 			 * 			});
 			 * 		}
-			 *  
+			 *
 			 * 		<strong>CKEDITOR.dialog.add</strong>( 'mydialog', function( api )
 			 * 		{
@@ -1330,10 +1337,10 @@
 			 * 				}
 			 * 			};
-			 * 
+			 *
 			 * 			return dialogDefinition;
 			 * 		} );
 			 * 	}
 			 * } );
-			 * 
+			 *
 			 * CKEDITOR.replace( 'editor1', { extraPlugins : 'myplugin' } );
 			 */
@@ -3182,9 +3189,11 @@
 /**
  * Fired when a dialog is being resized. The event is fired on
- * the 'CKEDITOR.dialog' object, not a dialog instance.
+ * both the 'CKEDITOR.dialog' object and the dialog instance
+ * since 3.5.3, previously it's available only in the global object.
  * @name CKEDITOR.dialog#resize
  * @since 3.5
  * @event
- * @param {CKEDITOR.dialog} dialog The dialog being resized.
+ * @param {CKEDITOR.dialog} dialog The dialog being resized (if
+ * it's fired on the dialog itself, this parameter isn't sent).
  * @param {String} skin The skin name.
  * @param {Number} width The new width.
