mirror of
https://github.com/servo/servo.git
synced 2025-06-16 12:24:29 +00:00
17 lines
413 B
HTML
17 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>
|