mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
at the last known good split point, and use it for `white-space: nowrap`. Fixes overflowing tables on Wikipedia. This infrastructure should form the basis of our fix for inline layout of fragments that don't themselves constitute valid split points. That will require some more work, however.
22 lines
310 B
HTML
22 lines
310 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body, html {
|
|
margin: 0;
|
|
}
|
|
em {
|
|
white-space: nowrap;
|
|
}
|
|
section {
|
|
background: gold;
|
|
width: 300px;
|
|
}
|
|
</style>
|
|
<section>
|
|
<em>Daniel Dennett</em>
|
|
<em>Michael Tye</em>
|
|
<em>David Chalmers</em>
|
|
<em>Patricia Churchland</em>
|
|
<em>Colin McGinn</em>
|
|
</section>
|
|
|
|
|