blob: 0ab4b4ed2fda93d5ab46f4ad27aec6d778e08b30 [file] [log] [blame]
/*
* Copyright 2009 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
/* Tests border and margin properties with four values */
.selector1 {
padding: 1px 4px 3px 2px;
margin: 1px 4px 3px 2px;
}
.selector2 {
padding: 1px inherit 3px auto;
margin: 1px auto 3px inherit;
}
.selector3 {
padding: 1px 'string' 3px 2px;
}
.selector4 {
border-color: red yellow blue green;
border-style: solid double dashed dotted;
border-width: thin 0 thick medium;
}
/* Nothing below here should be changed */
.selector10 {
padding: 1px 2px 3px;
}
.selector11 {
padding: 1px 2px;
}
.selector12 {
padding: 1px;
}
.selector13 {
border: thin solid red collapse;
}