[Mono-bugs] [Bug 77811][Nor] New - BackImageUrl property of Panel,
not well rendered
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Fri Mar 17 04:54:22 EST 2006
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 informatique.internet at fiducial.fr.
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: gonzalo at ximian.com
+ReportedBy: informatique.internet at fiducial.fr
+QAContact: mono-bugs at ximian.com
+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
More information about the mono-bugs
mailing list