[Mono-bugs] [Bug 47871][Nor] New - Font strikeout is not functional
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 25 Aug 2003 03:46:43 -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=47871
--- shadow/47871 2003-08-25 03:46:43.000000000 -0400
+++ shadow/47871.tmp.6308 2003-08-25 03:46:43.000000000 -0400
@@ -0,0 +1,57 @@
+Bug#: 47871
+Product: Mono/Class Libraries
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: System.Web
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: yaronshkop@hotmail.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Font strikeout is not functional
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+
+Description of Problem:
+Font strikeout is not functional
+
+
+Steps to reproduce the problem:
+1. Open the attached aspx file
+2. Click on "test" button
+
+Actual Results:
+No change is seen on the button
+
+Expected Results:
+A strikeout effect should appear on the button's font.
+(Horizontal line in the middle of the font).
+
+How often does this happen?
+Always.
+
+Additional Information:
+<HTML>
+ <HEAD>
+ <script language="C#" runat="server">
+ protected void Btn_OnCick(object sender, System.EventArgs e)
+ {
+ BtnTest.Font.Strikeout = true;
+ }
+ </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="Btn_OnCick"></asp:Button>
+ </form>
+ </body>
+</HTML>