CSS2 parser test.

This commit is contained in:
janc%netscape.com 1998-10-26 21:53:14 +00:00
parent e3a47e2933
commit 0b05446cf3

View File

@ -0,0 +1,35 @@
/*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
GOOD { border-bottom-style: inherit; }
GOOD { border-bottom-style: none; }
GOOD { border-bottom-style: hidden; }
GOOD { border-bottom-style: dotted; }
GOOD { border-bottom-style: dashed; }
GOOD { border-bottom-style: solid; }
GOOD { border-bottom-style: double; }
GOOD { border-bottom-style: groove; }
GOOD { border-bottom-style: ridge; }
GOOD { border-bottom-style: inset; }
GOOD { border-bottom-style: outset; }
BAD { border-bottom-style: far-right; }
BAD { border-bottom-style: ridge dotted; }
BAD { border-bottom-style: dashed outset; }
BAD { border-bottom-style: null; }
BAD { border-bottom-style: empty; }