Index: trunk/phase3/tests/parser/parserTests.txt |
— | — | @@ -1465,13 +1465,25 @@ |
1466 | 1466 | </table> |
1467 | 1467 | |
1468 | 1468 | !! end |
| 1469 | + |
1469 | 1470 | !! test |
1470 | | -Simple paragraph |
| 1471 | +Indented table wrapped in html tags (Related to Bug 26362) |
1471 | 1472 | !! input |
1472 | | -This is a simple paragraph. |
| 1473 | +<div> |
| 1474 | +:{| |
| 1475 | +|- |
| 1476 | +| test |
| 1477 | +|}</div> |
| 1478 | + |
1473 | 1479 | !! result |
1474 | | -<p>This is a simple paragraph. |
1475 | | -</p> |
| 1480 | +<div> |
| 1481 | +<dl><dd><table> |
| 1482 | +<tr> |
| 1483 | +<td>test |
| 1484 | +</td> |
| 1485 | +</tr> |
| 1486 | +</table></dd></dl></div> |
| 1487 | + |
1476 | 1488 | !! end |
1477 | 1489 | |
1478 | 1490 | !! test |