This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 175 - missing property value "inherit" on "marks" and "size"
Summary: missing property value "inherit" on "marks" and "size"
Status: RESOLVED INVALID
Alias: None
Product: CSSValidator
Classification: Unclassified
Component: CSS 2.0 (show other bugs)
Version: CSS Validator
Hardware: Other other
: P2 normal
Target Milestone: ---
Assignee: Philippe Le Hegaret
QA Contact:
URL: http://jigsaw.w3.org/css-validator/va...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-03-12 06:52 UTC by Paul Arzul
Modified: 2004-06-10 17:47 UTC (History)
0 users

See Also:


Attachments

Description Paul Arzul 2003-03-12 06:52:35 UTC
each css2 property can takes the value inherit[1,2], except "page" (which has
"auto").

this css2 should validate (see bug url):
---8<---
body
{
  marks: inherit;
  size: inherit;
}
--->8---

as of today (2003/03/12) i get:

* Line: 3 Context : body
Invalid number : marksProperty marks doesn't exist : inherit

* Line: 4 Context : body
Invalid number : sizeProperty size doesn't exist : inherit

* * *

original bug report (2002/06/24):
http://lists.w3.org/Archives/Public/www-validator-css/2002Jul/0011.html

- p

--
[1] http://www.w3.org/TR/REC-CSS2/cascade.html#value-def-inherit
[2] http://www.w3.org/TR/REC-CSS2/propidx.html
Comment 1 Sijtsche Smeman 2004-06-10 13:47:01 UTC
This message does not mean that the value 'inherit' is not accepted, but that
the properties marks and size do not exist.

This message is correct since these properties are only valid within @page rules
and not within the context shown in the bug report.