mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
Additionally, this patch cleans up some miscellaneous formatting issues and refactors files in `layout/css/` somewhat to eliminate needless levels of indirection. It also fixes our handling of presentational hints that only apply if border is nonzero.
10 lines
245 B
HTML
10 lines
245 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<table style="border: solid black 10px"><tr><td>:-)</td></tr></table>
|
|
<table style="border: solid black 1px"><tr><td>:-)</td></tr></table>
|
|
<table style="border: none"><tr><td>:-)</td></tr></table>
|
|
</body>
|
|
</html>
|
|
|
|
|