mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
It doesn't construct the float correctly, but at least it doesn't crash anymore. Fixes Reddit. Closes #3287.
15 lines
177 B
HTML
15 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>
|
|
|