From 09357d5e45114f9a2229e2b1d362667f110df456 Mon Sep 17 00:00:00 2001 From: kipp Date: Mon, 27 Apr 1998 15:43:09 +0000 Subject: [PATCH] new git-svn-id: svn://10.0.0.236/trunk@697 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/layout/html/tests/css/cursor.css | 23 +++++++++++++++++++++ mozilla/layout/html/tests/css/direction.css | 22 ++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 mozilla/layout/html/tests/css/cursor.css create mode 100644 mozilla/layout/html/tests/css/direction.css diff --git a/mozilla/layout/html/tests/css/cursor.css b/mozilla/layout/html/tests/css/cursor.css new file mode 100644 index 00000000000..09c4e866cae --- /dev/null +++ b/mozilla/layout/html/tests/css/cursor.css @@ -0,0 +1,23 @@ +/* + * 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 { cursor: arrow; } +GOOD { cursor: hand; } +GOOD { cursor: ibeam; } +GOOD { cursor: inherit; } +BAD { cursor: thin; } +BAD { cursor: 3.0in; } +BAD { cursor: thin dotted; } diff --git a/mozilla/layout/html/tests/css/direction.css b/mozilla/layout/html/tests/css/direction.css new file mode 100644 index 00000000000..41f402d1b6e --- /dev/null +++ b/mozilla/layout/html/tests/css/direction.css @@ -0,0 +1,22 @@ +/* + * 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 { direction: ltr; } +GOOD { direction: rtl; } +GOOD { direction: inherit; } +BAD { direction: thin; } +BAD { direction: 3.0in; } +BAD { direction: thin dotted; }