Index: /CKEditor/trunk/_source/plugins/fakeobjects/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/fakeobjects/plugin.js	(revision 3256)
+++ /CKEditor/trunk/_source/plugins/fakeobjects/plugin.js	(revision 3257)
@@ -26,9 +26,9 @@
 					{
 						// Get the width from the style.
-						var match = /(?:$|\s)width\s*:\s*(\d+)/.exec( style ),
+						var match = /(?:^|\s)width\s*:\s*(\d+)/.exec( style ),
 							width = match && match[1];
 
 						// Get the height from the style.
-						match = /(?:$|\s)height\s*:\s*(\d+)/.exec( style );
+						match = /(?:^|\s)height\s*:\s*(\d+)/.exec( style );
 						var height = match && match[1];
 
