mirror of
https://github.com/servo/servo.git
synced 2025-06-16 12:24:29 +00:00
values properly in simple cases. This allows things like `<sup><span>Foo</span></sup>` to work and improves Wikipedia.
20 lines
293 B
HTML
20 lines
293 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!--
|
|
Tests that layout doesn't treat `vertical-align` on table cells as though it were
|
|
`vertical-align` on inlines.
|
|
-->
|
|
<style>
|
|
td {
|
|
vertical-align: top;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr><td>What? <a>What?</a></td></tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|