From 5822084a5123ec33803d26dbf57867bdcc4dc6c9 Mon Sep 17 00:00:00 2001 From: "peterl%netscape.com" Date: Tue, 13 Oct 1998 19:10:25 +0000 Subject: [PATCH] set correct border style git-svn-id: svn://10.0.0.236/trunk@12706 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/html/content/src/nsHTMLTableElement.cpp | 8 ++++---- mozilla/layout/html/content/src/nsHTMLTableElement.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mozilla/content/html/content/src/nsHTMLTableElement.cpp b/mozilla/content/html/content/src/nsHTMLTableElement.cpp index ac0b9d190e5..98e31fc91ce 100644 --- a/mozilla/content/html/content/src/nsHTMLTableElement.cpp +++ b/mozilla/content/html/content/src/nsHTMLTableElement.cpp @@ -474,16 +474,16 @@ MapTableBorderInto(nsIHTMLAttributes* aAttributes, spacing->mBorder.SetLeft(twips); if (spacing->mBorderStyle[0] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[0] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[0] = NS_STYLE_BORDER_STYLE_OUTSET; } if (spacing->mBorderStyle[1] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[1] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[1] = NS_STYLE_BORDER_STYLE_OUTSET; } if (spacing->mBorderStyle[2] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[2] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[2] = NS_STYLE_BORDER_STYLE_OUTSET; } if (spacing->mBorderStyle[3] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[3] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[3] = NS_STYLE_BORDER_STYLE_OUTSET; } } } diff --git a/mozilla/layout/html/content/src/nsHTMLTableElement.cpp b/mozilla/layout/html/content/src/nsHTMLTableElement.cpp index ac0b9d190e5..98e31fc91ce 100644 --- a/mozilla/layout/html/content/src/nsHTMLTableElement.cpp +++ b/mozilla/layout/html/content/src/nsHTMLTableElement.cpp @@ -474,16 +474,16 @@ MapTableBorderInto(nsIHTMLAttributes* aAttributes, spacing->mBorder.SetLeft(twips); if (spacing->mBorderStyle[0] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[0] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[0] = NS_STYLE_BORDER_STYLE_OUTSET; } if (spacing->mBorderStyle[1] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[1] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[1] = NS_STYLE_BORDER_STYLE_OUTSET; } if (spacing->mBorderStyle[2] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[2] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[2] = NS_STYLE_BORDER_STYLE_OUTSET; } if (spacing->mBorderStyle[3] == NS_STYLE_BORDER_STYLE_NONE) { - spacing->mBorderStyle[3] = NS_STYLE_BORDER_STYLE_SOLID; + spacing->mBorderStyle[3] = NS_STYLE_BORDER_STYLE_OUTSET; } } }