Index: /FCKeditor/trunk/_dev/browserbugs/safari/table-layout-fixed.html
===================================================================
--- /FCKeditor/trunk/_dev/browserbugs/safari/table-layout-fixed.html	(revision 81)
+++ /FCKeditor/trunk/_dev/browserbugs/safari/table-layout-fixed.html	(revision 81)
@@ -0,0 +1,48 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>Safari Bug</title>
+</head>
+<body>
+	<div style="width: 100px; border: #000000 5px solid;">
+		<table style="table-layout: fixed;" width="100%">
+			<tr>
+				<td style="width: 100%; background-color: #ff0000;">&nbsp;</td>
+				<td style="width: 10px; background-color: #00ff00;">&nbsp;</td>
+			</tr>
+		</table>
+	</div>
+	<p>
+		Note that, in Safari, the red cell size changes relatively to the green
+		cell size.
+	</p>
+	<div style="width: 100px; border: #000000 5px solid;">
+		<table style="table-layout: fixed;" width="100%">
+			<tr>
+				<td style="width: 100%; background-color: #ff0000;">&nbsp;</td>
+				<td style="width: 30px; background-color: #00ff00;">&nbsp;</td>
+			</tr>
+		</table>
+	</div>
+	<p>
+		The following works propertly because the table doesn't have 
+		<b>table-layout:fixed</b> (whithout it, the green cell size is not
+		respected, and this is the expected behavior in this case).
+	</p>
+	<div style="width: 100px; border: #000000 5px solid;">
+		<table width="100%">
+			<tr>
+				<td style="width: 100%; background-color: #ff0000;">&nbsp;</td>
+				<td style="width: 30px; background-color: #00ff00;">&nbsp;</td>
+			</tr>
+		</table>
+	</div>
+	<p>
+		The following is here just to check that the inner table doesnt forces
+		the above DIV to expand (it has the exact same width).
+	</p>
+	<div style="width: 100px; border: #000000 5px solid;">
+		&nbsp;
+	</div>
+</body>
+</html>
Index: /FCKeditor/trunk/_test/manual/fckspecialcombo/test1.html
===================================================================
--- /FCKeditor/trunk/_test/manual/fckspecialcombo/test1.html	(revision 80)
+++ /FCKeditor/trunk/_test/manual/fckspecialcombo/test1.html	(revision 81)
@@ -81,4 +81,6 @@
 	oCombo.AddItem( 'Brown', '<span style="color:Brown">Brown with a long description text that overflows</span>' ) ;
 	oCombo.Create( document.getElementById( 'xTarget2' ) ) ;
+	
+	document.getElementById( 'xOutput' ).value = document.getElementById( 'xTarget2' ).innerHTML ;
 }
 
@@ -86,18 +88,19 @@
 </head>
 <body>
-		<table width="100%" height="100%">
-			<tr>
-				<td class="ToolbarBase" align="center">
-					<table cellspacing="10">
-						<tr>
-							<td id="xTarget1">
-							</td>
-							<td id="xTarget2">
-							</td>
-						</tr>
-					</table>
-				</td>
-			</tr>
-		</table>
+	<table width="100%" height="100%">
+		<tr>
+			<td class="ToolbarBase" align="center">
+				<table cellspacing="10">
+					<tr>
+						<td id="xTarget1">
+						</td>
+						<td id="xTarget2">
+						</td>
+					</tr>
+				</table>
+			</td>
+		</tr>
+	</table>
+	<textarea id="xOutput"></textarea>
 </body>
 </html>
