mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-12 19:00:11 +01:00
24 lines
538 B
HTML
24 lines
538 B
HTML
<html>
|
|
<head>
|
|
<title>DEL cross scope with a table</title>
|
|
</head>
|
|
<body>
|
|
DEL cross scope with a table<br>
|
|
It starts before table, but ends inside table.
|
|
<br>It does not effect the table, but the DEL is terminated after the table.
|
|
<br>1normal text in body line 1.
|
|
<STRIKE>
|
|
text in DEL.
|
|
<table border>
|
|
<tr>
|
|
<td>This is the first cell in the table
|
|
<td>This cell 2 </td>
|
|
</STRIKE>
|
|
<tr>
|
|
<td>This is the third cell in the table
|
|
<td>This is the fourth cell in the table
|
|
</table>
|
|
2normal text in body line 2.
|
|
</body>
|
|
</html>
|