mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
It doesn't construct the float correctly, but at least it doesn't crash anymore. Fixes Reddit. Closes #3287.
16 lines
177 B
HTML
16 lines
177 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.stand:before {
|
|
content: "";
|
|
float: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="stand">Toast! Toast! Toast!</div>
|
|
</body>
|
|
</html>
|
|
|