Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 7610)
+++ /CKEditor/trunk/CHANGES.html	(revision 7611)
@@ -55,4 +55,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/9289">#9289</a> : Disallow creating javascript: links through the link dialog.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/9312">#9312</a> : Fixed table with multiple &lt;tbody&gt; output in wrong order.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/8795">#8795</a> : Fixed table resize plugin stops working when document overflows horizontally.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/tableresize/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/tableresize/plugin.js	(revision 7610)
+++ /CKEditor/trunk/_source/plugins/tableresize/plugin.js	(revision 7611)
@@ -288,5 +288,5 @@
 		function onMouseMove( evt )
 		{
-			move( evt.data.$.clientX );
+			move( evt.data.getPageOffset().x );
 		}
 
@@ -404,7 +404,9 @@
 						evt = evt.data;
 
+						var pageX = evt.getPageOffset().x;
+
 						// If we're already attached to a pillar, simply move the
 						// resizer.
-						if ( resizer && resizer.move( evt.$.clientX ) )
+						if ( resizer && resizer.move( pageX ) )
 						{
 							cancel( evt );
@@ -430,5 +432,5 @@
 						}
 
-						var pillar = getPillarAtPosition( pillars, evt.$.clientX );
+						var pillar = getPillarAtPosition( pillars, pageX );
 						if ( pillar )
 						{
