[Mono-bugs] [Bug 47870][Maj] New - Font size bug

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 25 Aug 2003 03:37:15 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by yaronshkop@hotmail.com.

http://bugzilla.ximian.com/show_bug.cgi?id=47870

--- shadow/47870	2003-08-25 03:37:15.000000000 -0400
+++ shadow/47870.tmp.6260	2003-08-25 03:37:15.000000000 -0400
@@ -0,0 +1,59 @@
+Bug#: 47870
+Product: Mono/Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: System.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: yaronshkop@hotmail.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Font size bug
+
+Please fill in this template when reporting a bug, unless you know what 
+you are doing.
+
+Description of Problem:
+Font size can not be changed by the user.
+
+Steps to reproduce the problem:
+1. Open the attached aspx file. with mozilla
+2. Click the "test" button
+
+Actual Results:
+Invalid html page is returned
+
+Expected Results:
+The size of the button's font should change to 16
+
+How often does this happen? 
+Always
+
+Additional Information:
+I think it's related to the same bug I've reported on bug #47868
+The bug occur with IE too, but on IE no page is returned.
+
+<HTML>
+     <HEAD>
+     <script language="C#" runat="server">
+     private void BtnTest_Click(object sender, System.EventArgs e)
+     {
+	BtnTest.Font.Size = 16;
+     }
+     </script>
+     </HEAD>
+     <body MS_POSITIONING="GridLayout">
+     <form id="Form1" method="post" runat="server">
+	<asp:Button id="BtnTest" style="Z-INDEX: 101; LEFT: 240px; 
+             POSITION: absolute; TOP: 96px" runat="server"
+	     Text="Test" Width="72px" OnClick="BtnTest_Click"  
+             EnableViewState="True"></asp:Button>
+     </form>
+     </body>
+</HTML>