5b6f3c07b7fc92bfe635c2d9a9ab68c5d65092fe
[yaffs-website] / vendor / caxy / php-htmldiff / tests / fixtures / HtmlDiff / table-whitespace-issue.html
1 <oldText>
2     <table class="Standaardtabel">
3         <tbody>
4         <tr>
5             <td> </td>
6             <td>DDD</td>
7             <td>ABC</td>
8             <td>DEF</td>
9         </tr>
10         </tbody>
11     </table>
12 </oldText>
13
14 <newText>
15     <table class="Standaardtabel">
16         <tbody>
17         <tr>
18             <td> </td>
19             <td>ZXY</td>
20             <td>ABC</td>
21             <td>DEF</td>
22         </tr>
23         </tbody>
24     </table>
25 </newText>
26
27 <expected>
28     <table class="Standaardtabel"><tr><td rowspan="1" colspan="1"><span class="empty"></span></td><td rowspan="1" colspan="1"><del class="diffmod">DDD </del><ins class="diffmod">ZXY </ins></td><td rowspan="1" colspan="1"><p>ABC</p></td><td rowspan="1" colspan="1"><p>DEF</p></td></tr></table>
29 </expected>