Changeset 53448 in webkit


Ignore:
Timestamp:
Jan 18, 2010 6:53:16 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-18 Yuzo Fujishima <yuzo@google.com>

Reviewed by Darin Adler.

Skip an error after invalid blocks in a CSS expression.
https://bugs.webkit.org/show_bug.cgi?id=33650

  • fast/css/parsing-error-recovery.html:

2010-01-18 Yuzo Fujishima <yuzo@google.com>

Reviewed by Darin Adler.

Skip an error after invalid blocks in a CSS expression.
https://bugs.webkit.org/show_bug.cgi?id=33650

  • css/CSSGrammar.y:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53446 r53448  
     12010-01-18  Yuzo Fujishima  <yuzo@google.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Skip an error after invalid blocks in a CSS expression.
     6        https://bugs.webkit.org/show_bug.cgi?id=33650
     7
     8        * fast/css/parsing-error-recovery.html:
     9
    1102010-01-18  Nikolas Zimmermann  <nzimmermann@rim.com>
    211
  • trunk/LayoutTests/fast/css/parsing-error-recovery.html

    r53004 r53448  
    2020            display:none;
    2121        }
     22        #test2 {
     23            behavior:expression(function(){}());
     24            display:none;
     25        }
    2226
    2327        /* Value containing an invalid block should be skipped */
     
    2529          height:{}
    2630        }
    27         #test2 {
     31        #test3 {
    2832            display:none;
    2933        }
     
    3438            a:active { color: red;}
    3539        }
    36         #test3 {
     40        #test4 {
    3741            display:none;
    3842        }
     
    4852  <div class="to_be_hidden" id="test2">FAIL: Test 2</div>
    4953  <div class="to_be_hidden" id="test3">FAIL: Test 3</div>
     54  <div class="to_be_hidden" id="test4">FAIL: Test 4</div>
    5055  <div class="to_be_shown" id="last">PASS</div>
    5156</body>
  • trunk/WebCore/ChangeLog

    r53447 r53448  
     12010-01-18  Yuzo Fujishima  <yuzo@google.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Skip an error after invalid blocks in a CSS expression.
     6        https://bugs.webkit.org/show_bug.cgi?id=33650
     7
     8        * css/CSSGrammar.y:
     9
    1102010-01-15  Gavin Barraclough  <barraclough@apple.com>
    211
  • trunk/WebCore/css/CSSGrammar.y

    r53004 r53448  
    9898%}
    9999
    100 %expect 53
     100%expect 54
    101101
    102102%nonassoc LOWEST_PREC
     
    13321332        $$ = 0;
    13331333    }
     1334    | expr invalid_block_list error {
     1335        $$ = 0;
     1336    }
    13341337    | expr error {
    13351338        $$ = 0;
Note: See TracChangeset for help on using the changeset viewer.