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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=77811 --- shadow/77811 2006-03-17 04:54:22.000000000 -0500 +++ shadow/77811.tmp.25932 2006-03-17 04:54:22.000000000 -0500 @@ -0,0 +1,73 @@ +Bug#: 77811 +Product: Mono: Class Libraries +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Sys.Web +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: BackImageUrl property of Panel, not well rendered + +Description of Problem: +The BackImageUrl property of a panel, is not well rendered on mono: + +Steps to reproduce the problem: +1. try this aspx on mono: +<Html> + <Head> + <Title>Test Mono</Title> + </Head> + <Body> + <asp:Panel id="pnlBar" runat="server" BackImageUrl="images/bkpnl.gif" > + </asp:Panel> + + </Body> +</Html> + + +Actual Results: +Html Rendered : +<Html> + <Head> + <Title>Test Mono</Title> + </Head> + <Body> + <div id="pnlBar" style="background-image:images/bkpnl.gif;"> + +</div> + + </Body> + +</Html> + +Expected Results: +It should be (on ms.net it is:) +<Html> + <Head> + <Title>Test Mono</Title> + </Head> + <Body> + <div id="pnlBar" style="background-image:url(images/bkpnl.gif);"> + +</div> + + </Body> + +</Html> + +How often does this happen? +always + +Additional Information: +without "url()" the background-image property is not interpreted by the +browser! + +Thanks _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
