[Mono-bugs] [Bug 76078][Maj] New - rendering of certain page
elements is broken in 1.1.9
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Tue Sep 13 02:40:50 EDT 2005
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 chris at turchin.net.
http://bugzilla.ximian.com/show_bug.cgi?id=76078
--- shadow/76078 2005-09-13 02:40:50.000000000 -0400
+++ shadow/76078.tmp.2835 2005-09-13 02:40:50.000000000 -0400
@@ -0,0 +1,72 @@
+Bug#: 76078
+Product: Mono: Class Libraries
+Version: 1.1
+OS:
+OS Details: suse 9.3
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: Sys.Web
+AssignedTo: gonzalo at ximian.com
+ReportedBy: chris at turchin.net
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: rendering of certain page elements is broken in 1.1.9
+
+Description of Problem:
+
+rendering of certain page elements is broken in 1.1.9. for example, in the
+sample code below, the second textbox does not appear in 1.1.9, though
+comparisons in .NET FW show this to be incorrect. it used to work in
+earlier mono releases also (unsure which version, sorry, i am reporting
+this for a friend)
+
+Steps to reproduce the problem:
+1. load page using 1.1.9
+2. compare to resulte in .net FW 1.1 or (I assume) 1.1.8
+3. repeat...
+
+Actual Results:
+
+single textbox, second textbox is missing. i think it has to do with the br
+element. anything above the br is missing...
+
+Expected Results:
+
+two textboxes, with text above first and below second
+
+How often does this happen?
+
+always. tried on two separate systems. see sample code below...
+
+Additional Information:
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
+<html>
+ <head>
+ <title>test</title>
+ </head>
+ <body>
+ <form id="Form1" method="post" runat="server">
+ <asp:Table id="tblTest" Runat="server" Width="800"
+HorizontalAlign="center" Height="80%" cellPadding="0" cellSpacing="0">
+ <asp:TableRow HorizontalAlign="Center"
+VerticalAlign="Top" Runat="server" ID="Tablerow1">
+ <asp:TableCell VerticalAlign="Top"
+Runat="server" ID="Tablecell1">
+ Test<br/><asp:TextBox ID="tbTest"
+Runat="server" Width="360" />
+ </asp:TableCell>
+ <asp:TableCell VerticalAlign="Top"
+Runat="server" ID="Tablecell2">
+ <asp:TextBox ID="tbTest2"
+Runat="server" Width="360" /><br/>Test2
+ </asp:TableCell>
+ </asp:TableRow>
+ </asp:Table>
+ </form>
+ </body>
+</html>
More information about the mono-bugs
mailing list