Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/Test/System.Web.UI/Html32TextWriterCas.cs')
-rw-r--r--mcs/class/System.Web/Test/System.Web.UI/Html32TextWriterCas.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/mcs/class/System.Web/Test/System.Web.UI/Html32TextWriterCas.cs b/mcs/class/System.Web/Test/System.Web.UI/Html32TextWriterCas.cs
index dd493c74245..d68e6b6216d 100644
--- a/mcs/class/System.Web/Test/System.Web.UI/Html32TextWriterCas.cs
+++ b/mcs/class/System.Web/Test/System.Web.UI/Html32TextWriterCas.cs
@@ -51,14 +51,12 @@ namespace MonoCasTests.System.Web.UI {
private void Deny_Unrestricted (Html32TextWriter htw)
{
-#if NET_2_0
htw.ShouldPerformDivTableSubstitution = true;
Assert.IsTrue (htw.ShouldPerformDivTableSubstitution, "ShouldPerformDivTableSubstitution");
htw.SupportsBold = true;
Assert.IsTrue (htw.SupportsBold, "SupportsBold");
htw.SupportsItalic = true;
Assert.IsTrue (htw.SupportsItalic, "SupportsItalic");
-#endif
htw.RenderBeginTag (HtmlTextWriterTag.Table);
htw.RenderBeginTag ("<tr>");
htw.RenderEndTag ();