<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to 74: Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/" rel="alternate"/><link href="https://sourceforge.net/p/cssparser/bugs/74/feed.atom" rel="self"/><id>https://sourceforge.net/p/cssparser/bugs/74/</id><updated>2017-10-31T09:48:38.057000Z</updated><subtitle>Recent changes to 74: Invalid style declarations truncates the following declarations</subtitle><entry><title>#74 Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/?limit=25#b32d" rel="alternate"/><published>2017-10-31T09:48:38.057000Z</published><updated>2017-10-31T09:48:38.057000Z</updated><author><name>RBRi</name><uri>https://sourceforge.net/u/rbri/</uri></author><id>https://sourceforge.net536c7d14cb8c961750e1d60732396f54abbebeae</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;: 0.9.24 --&amp;gt; 0.9.25&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>#74 Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/?limit=25#66e2" rel="alternate"/><published>2017-06-01T16:42:26.931000Z</published><updated>2017-06-01T16:42:26.931000Z</updated><author><name>RBRi</name><uri>https://sourceforge.net/u/rbri/</uri></author><id>https://sourceforge.net9d038af811ed1846fbf4859842d38f01dd354858</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;: 0.9.23 --&amp;gt; 0.9.24&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>#74 Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/?limit=25#4a0c" rel="alternate"/><published>2017-02-23T09:14:36.582000Z</published><updated>2017-02-23T09:14:36.582000Z</updated><author><name>RBRi</name><uri>https://sourceforge.net/u/rbri/</uri></author><id>https://sourceforge.netfb84d5b4e75b71c6b935bc8aecba3bf88b100603</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Group&lt;/strong&gt;: 0.9.22 --&amp;gt; 0.9.23&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</summary></entry><entry><title>Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/" rel="alternate"/><published>2017-01-27T07:11:00.963000Z</published><updated>2017-01-27T07:11:00.963000Z</updated><author><name>Asiya</name><uri>https://sourceforge.net/u/fabian12/</uri></author><id>https://sourceforge.net78ff3547dc05466bcd2f2db2766f2cb7fc150bb1</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Input 1: &lt;br/&gt;
&amp;lt;style&amp;gt;&lt;br/&gt;
h1{&lt;br/&gt;
-moz-transform:scale(x)&lt;br/&gt;
-moz-transform:scale(x);&lt;br/&gt;
color:red;&lt;br/&gt;
height:10px;&lt;br/&gt;
visibility: visible;}&lt;br/&gt;
&amp;lt;/style&amp;gt;&lt;/p&gt;
&lt;p&gt;output 1:&lt;br/&gt;
&amp;lt;style&amp;gt;&lt;br/&gt;
h1{&lt;br/&gt;
color:red;&lt;br/&gt;
height:10px;&lt;br/&gt;
visibility: visible;}&lt;br/&gt;
&amp;lt;/style&amp;gt;&lt;/p&gt;
&lt;p&gt;Valid behavior &lt;/p&gt;
&lt;p&gt;Input 2 : &lt;br/&gt;
&amp;lt;style&amp;gt;&lt;br/&gt;
h1{&lt;br/&gt;
-moz-transform:scale(x)&lt;br/&gt;
-webkit-transform :scale(x);&lt;br/&gt;
color:red;&lt;br/&gt;
height:10px;&lt;br/&gt;
visibility: visible;}&lt;br/&gt;
&amp;lt;/style&amp;gt;&lt;/p&gt;
&lt;p&gt;output 2 : &lt;/p&gt;
&amp;lt;style&amp;gt;
h1{
}
&amp;lt;/style&amp;gt;

&lt;p&gt;INVALID behavior in CSSParser - due to space after the 2nd property &lt;strong&gt;-webkit-transform&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Input 3: &lt;/p&gt;
&amp;lt;style&amp;gt;
h1{
background-image: radial-gradient (center, ellipse closest-corner , #d59815 0%, #990000 100% );
color:red;
}
&amp;lt;/style&amp;gt;

&lt;p&gt;output 3: &lt;/p&gt;
&amp;lt;style&amp;gt;
h1{
}
&amp;lt;/style&amp;gt;

&lt;p&gt;INVALID behavior in CSSParser due to space after the function name  &lt;strong&gt;radial-gradient&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;FIX &lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;SACParserCSS3.java  - Line no 2210&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {&lt;br/&gt;
        case LROUND:&lt;br/&gt;
        case COLON: &lt;br/&gt;
        case UNKNOWN:{&lt;br/&gt;
            t = jj_consume_token(jj_ntk);&lt;br/&gt;
            locator = createLocator(token);&lt;br/&gt;
            CSSParseException cpe = toCSSParseException("invalidDeclarationInvalidChar", new String[] {t.image}, locator);&lt;br/&gt;
            getErrorHandler().error(cpe);&lt;br/&gt;
            error_skipdecl();&lt;br/&gt;
        break;&lt;br/&gt;
        }&lt;br/&gt;
      default:&lt;br/&gt;
        jj_la1&lt;span&gt;[96]&lt;/span&gt; = jj_gen;&lt;br/&gt;
        ;&lt;br/&gt;
      }&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/" rel="alternate"/><published>2017-01-27T07:11:00.963000Z</published><updated>2017-01-27T07:11:00.963000Z</updated><author><name>Asiya</name><uri>https://sourceforge.net/u/fabian12/</uri></author><id>https://sourceforge.netc5ba4cd5b1f7d3ef8c3fac100deb7fb191036ccc</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 74 has been modified: Invalid style declarations truncates the following declarations&lt;br/&gt;
Edited By: RBRi (rbri)&lt;br/&gt;
_milestone updated: u'0.9.22' =&amp;gt; u'0.9.23'&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/" rel="alternate"/><published>2017-01-27T07:11:00.963000Z</published><updated>2017-01-27T07:11:00.963000Z</updated><author><name>Asiya</name><uri>https://sourceforge.net/u/fabian12/</uri></author><id>https://sourceforge.net0cde27e303358b19cf18ce48a195608b669241a9</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 74 has been modified: Invalid style declarations truncates the following declarations&lt;br/&gt;
Edited By: RBRi (rbri)&lt;br/&gt;
_milestone updated: u'0.9.23' =&amp;gt; u'0.9.24'&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Invalid style declarations truncates the following declarations</title><link href="https://sourceforge.net/p/cssparser/bugs/74/" rel="alternate"/><published>2017-01-27T07:11:00.963000Z</published><updated>2017-01-27T07:11:00.963000Z</updated><author><name>Asiya</name><uri>https://sourceforge.net/u/fabian12/</uri></author><id>https://sourceforge.netfc18fd66e20540ab6757690a16024593e47878b9</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Ticket 74 has been modified: Invalid style declarations truncates the following declarations&lt;br/&gt;
Edited By: RBRi (rbri)&lt;br/&gt;
_milestone updated: u'0.9.24' =&amp;gt; u'0.9.25'&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>