mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
values properly in simple cases. This allows things like `<sup><span>Foo</span></sup>` to work and improves Wikipedia.
15 lines
252 B
HTML
15 lines
252 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that `vertical-align: baseline` inside `vertical-align: super` is laid out properly. -->
|
|
<style>
|
|
span {
|
|
vertical-align: baseline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p><sup><span>Yo</span></sup></p>
|
|
</body>
|
|
</html>
|
|
|