mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
58 lines
2.0 KiB
CSS
58 lines
2.0 KiB
CSS
/*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
GOOD { clip: auto; }
|
|
GOOD { clip: rect( auto auto auto auto ) }
|
|
GOOD { clip: rect(auto auto auto auto) }
|
|
GOOD { clip: rect( 12pt auto auto auto ) }
|
|
|
|
GOOD { clip: rect( auto 12pt auto auto ) }
|
|
GOOD { clip: rect( auto auto 12pt auto ) }
|
|
GOOD { clip: rect( auto auto auto 12pt ) }
|
|
GOOD { clip: rect( 12pt 13em auto auto ) }
|
|
|
|
GOOD { clip: rect( 12pt 13em 14pc auto ) }
|
|
GOOD { clip: rect( 12pt 13em 14pc 15in ) }
|
|
GOOD { clip: rect ( 12pt 13em 14pc 15in ) }
|
|
|
|
GOOD { clip: rect( auto, auto, auto, auto ) }
|
|
GOOD { clip: rect(auto , auto , auto , auto) }
|
|
GOOD { clip: rect( 12pt, auto, auto, auto, ) }
|
|
|
|
GOOD { clip: rect( auto, 12pt, auto, auto ) }
|
|
GOOD { clip: rect( auto, auto, 12pt, auto ) }
|
|
GOOD { clip: rect( auto, auto, auto, 12pt ) }
|
|
GOOD { clip: rect( 12pt, 13em, auto, auto ) }
|
|
|
|
GOOD { clip: rect( 12pt, 13em, 14pc, auto ) }
|
|
GOOD { clip: rect( 12pt, 13em, 14pc, 15in ) }
|
|
GOOD { clip: rect ( 12pt, 13em, 14pc, 15in ) }
|
|
|
|
BAD { clip: rect( 1pt ) }
|
|
BAD { clip: rect( 1pt 2pt ) }
|
|
BAD { clip: rect( 1pt 2pt 3pt ) }
|
|
BAD { clip: rect( 1 2 3 4 ) }
|
|
BAD { clip: rect( auto ) }
|
|
BAD { clip: rect( auto auto) }
|
|
BAD { clip: rect( auto auto auto) }
|
|
BAD { clip: rect( auto auto auto) }
|
|
BAD { clip: rect( auto, auto, auto, auto, ) }
|
|
BAD { clip: rect ( 12pt, 13em, 14pc, 15in, ) }
|