<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="xml.css" type="text/css"?>

<document>

<h1>Table Reflow Test</h1>

<para>The 3.2 cell has been declared to be a block level element and should overflow the table width.
This has no effect in IE7 and lower, since for this browser a table cell <em>is</em> a block
level element. In fact, IE uses its own algorithm for table computations.</para>

<table>
<row>
<cell>1</cell>
<cell>2</cell>
<cell>3</cell>
</row>
<row>
<cell>1.1</cell>
<cell>2.1</cell>
<cell>3.1</cell>
</row>
<row>
<cell>1.2</cell>
<cell>2.2</cell>
<cell id="wide">3.2</cell>
</row>
</table>

</document>