mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
18 lines
413 B
HTML
18 lines
413 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>'visibility: hidden' test</title>
|
|
<style type="text/css">
|
|
body { color: black; background: white }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>This should be visible.</p>
|
|
<div>
|
|
<!-- Use the same markup so that this test is not affected by broken margin collapsing. -->
|
|
<p> </p>
|
|
<p>This should be visible.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|