mirror of
https://github.com/servo/servo.git
synced 2025-08-08 23:15:33 +01:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
18
tests/ref/visibility_hidden.html
Normal file
18
tests/ref/visibility_hidden.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>'visibility: hidden' test</title>
|
||||
<style type="text/css">
|
||||
body { color: black; background: white }
|
||||
.hidden { visibility: hidden; }
|
||||
.visible { visibility: visible; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>This should be visible.</p>
|
||||
<div class="hidden">
|
||||
<p>This should NOT be visible.</p>
|
||||
<p class="visible">This should be visible.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue