Changeset 63402 in webkit


Ignore:
Timestamp:
Jul 14, 2010 9:19:45 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-07-14 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add a test to document WebKit (and Minefield's) HTML5 spec violation related to text node coalescing
https://bugs.webkit.org/show_bug.cgi?id=42294

  • html5lib/resources/adoption01.dat:
  • html5lib/runner-expected-html5.txt:
  • html5lib/runner-expected.txt:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r63386 r63402  
     12010-07-14  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Add a test to document WebKit (and Minefield's) HTML5 spec violation related to text node coalescing
     6        https://bugs.webkit.org/show_bug.cgi?id=42294
     7
     8        * html5lib/resources/adoption01.dat:
     9        * html5lib/runner-expected-html5.txt:
     10        * html5lib/runner-expected.txt:
     11
    1122010-07-14  Eric Seidel  <eric@webkit.org>
    213
  • trunk/LayoutTests/html5lib/resources/adoption01.dat

    r63386 r63402  
    182182|           <td>
    183183|             "2"
     184
     185#data
     186<table>A<td>B</td>C</table>
     187#errors
     188#document
     189| <html>
     190|   <head>
     191|   <body>
     192|     "A"
     193|     "C"
     194|     <table>
     195|       <tbody>
     196|         <tr>
     197|           <td>
     198|             "B"
  • trunk/LayoutTests/html5lib/runner-expected-html5.txt

    r63386 r63402  
    2092093
    21021011
    211 
    212 Test 3 of 12 in resources/adoption01.dat failed. Input:
     21113
     212
     213Test 3 of 13 in resources/adoption01.dat failed. Input:
    213214<a>1<button>2</a>3</button>
    214215Got:
     
    230231|     "3"
    231232
    232 Test 11 of 12 in resources/adoption01.dat failed. Input:
     233Test 11 of 13 in resources/adoption01.dat failed. Input:
    233234<p><b id="A"><script>document.getElementById("A").id = "B"</script></p>TEXT</b>
    234235Got:
     
    256257|       id="A"
    257258|       "TEXT"
     259
     260Test 13 of 13 in resources/adoption01.dat failed. Input:
     261<table>A<td>B</td>C</table>
     262Got:
     263| <html>
     264|   <head>
     265|   <body>
     266|     "AC"
     267|     <table>
     268|       <tbody>
     269|         <tr>
     270|           <td>
     271|             "B"
     272Expected:
     273| <html>
     274|   <head>
     275|   <body>
     276|     "A"
     277|     "C"
     278|     <table>
     279|       <tbody>
     280|         <tr>
     281|           <td>
     282|             "B"
    258283resources/inbody01.dat: PASS
    259284
  • trunk/LayoutTests/html5lib/runner-expected.txt

    r63386 r63402  
    5007500712
    50085008
    5009 Test 1 of 12 in resources/adoption01.dat failed. Input:
     5009Test 1 of 13 in resources/adoption01.dat failed. Input:
    50105010<a><p></a></p>
    50115011Got:
     
    50235023|       <a>
    50245024
    5025 Test 6 of 12 in resources/adoption01.dat failed. Input:
     5025Test 6 of 13 in resources/adoption01.dat failed. Input:
    50265026<table><a>1<p>2</a>3</p>
    50275027Got:
     
    50485048|     <table>
    50495049
    5050 Test 7 of 12 in resources/adoption01.dat failed. Input:
     5050Test 7 of 13 in resources/adoption01.dat failed. Input:
    50515051<b><b><a><p></a>
    50525052Got:
     
    50685068|           <a>
    50695069
    5070 Test 8 of 12 in resources/adoption01.dat failed. Input:
     5070Test 8 of 13 in resources/adoption01.dat failed. Input:
    50715071<b><a><b><p></a>
    50725072Got:
     
    50905090|           <a>
    50915091
    5092 Test 9 of 12 in resources/adoption01.dat failed. Input:
     5092Test 9 of 13 in resources/adoption01.dat failed. Input:
    50935093<a><b><b><p></a>
    50945094Got:
     
    51145114|           <a>
    51155115
    5116 Test 11 of 12 in resources/adoption01.dat failed. Input:
     5116Test 11 of 13 in resources/adoption01.dat failed. Input:
    51175117<p><b id="A"><script>document.getElementById("A").id = "B"</script></p>TEXT</b>
    51185118Got:
     
    51415141|       "TEXT"
    51425142
    5143 Test 12 of 12 in resources/adoption01.dat failed. Input:
     5143Test 12 of 13 in resources/adoption01.dat failed. Input:
    51445144<table><a>1<td>2</td>3</table>
    51455145Got:
Note: See TracChangeset for help on using the changeset viewer.