[cssom] Make 'parse a CSS value' work for case-sensitive properties

Thu, 25 Apr 2013 13:58:27 +0200

author
Simon Pieters <simonp@opera.com>
date
Thu, 25 Apr 2013 13:58:27 +0200
changeset 8007
8b19669fd05f
parent 8006
121de33edc34
child 8008
e6ae584ef958

[cssom] Make 'parse a CSS value' work for case-sensitive properties

cssom/Overview.html file | annotate | diff | comparison | revisions
cssom/cssom-source file | annotate | diff | comparison | revisions
     1.1 --- a/cssom/Overview.html	Thu Apr 25 13:51:14 2013 +0200
     1.2 +++ b/cssom/Overview.html	Thu Apr 25 13:58:27 2013 +0200
     1.3 @@ -2119,9 +2119,11 @@
     1.4    <var>property</var> means to a parse the given value according to
     1.5    the definition of the property that is an
     1.6    <a class="external" href="http://dom.spec.whatwg.org/#ascii-case-insensitive">ASCII case-insensitive</a> match for
     1.7 -  <var>property</var> in the CSS specification. If the given value
     1.8 -  is <span>ignored</span> return <code>null</code>. Otherwise return the CSS value for
     1.9 -  the given <var>property</var>.</p>
    1.10 +  <var>property</var> in the CSS specification, if <var>property</var> is defined to be
    1.11 +  case-insensitive, or otherwise that is a
    1.12 +  <a class="external" href="http://dom.spec.whatwg.org/#case-sensitive">case-sensitive</a> match for <var>property</var> in the
    1.13 +  CSS specification. If the given value is <span>ignored</span> return <code>null</code>.
    1.14 +  Otherwise return the CSS value for the given <var>property</var>.</p>
    1.15  
    1.16    <p class="note">"<code>!important</code>" declarations are not
    1.17    part of the property value space and will therefore cause
     2.1 --- a/cssom/cssom-source	Thu Apr 25 13:51:14 2013 +0200
     2.2 +++ b/cssom/cssom-source	Thu Apr 25 13:58:27 2013 +0200
     2.3 @@ -1675,9 +1675,11 @@
     2.4    <var>property</var> means to a parse the given value according to
     2.5    the definition of the property that is an
     2.6    <span data-anolis-spec=dom>ASCII case-insensitive</span> match for
     2.7 -  <var>property</var> in the CSS specification. If the given value
     2.8 -  is <span>ignored</span> return <code>null</code>. Otherwise return the CSS value for
     2.9 -  the given <var>property</var>.</p>
    2.10 +  <var>property</var> in the CSS specification, if <var>property</var> is defined to be
    2.11 +  case-insensitive, or otherwise that is a
    2.12 +  <span data-anolis-spec=dom>case-sensitive</span> match for <var>property</var> in the
    2.13 +  CSS specification. If the given value is <span>ignored</span> return <code>null</code>.
    2.14 +  Otherwise return the CSS value for the given <var>property</var>.</p>
    2.15  
    2.16    <p class="note">"<code>!important</code>" declarations are not
    2.17    part of the property value space and will therefore cause

mercurial