
IE locks up when using rounded corners on table elements
The following code completely locks up IE8 (including compatibility mode) when I hover my mouse cursor over the table content:
Code:
<html>
<head>
<title>Test</title>
<style type="text/css">
.round {
border-radius: 5px;
behavior: url(styles/PIE.htc);
}
</style>
</head>
<body>
<table class="round">
<tr>
<td>test</td>
</tr>
</table>
</body>
</html>
Basically the most simplistic setup makes IE hang. Rounded corner on div elements work properly. Can anybody help me out? Is this a bug in PIE or did I do something wrong.
Thanks in advance.