2011-07-18 01:39:56 +04:00
|
|
|
<!--
|
|
|
|
* @author Niklas von Hertzen <niklas at hertzen.com>
|
|
|
|
* @created 16.7.2011
|
|
|
|
* @website http://hertzen.com
|
|
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Visible elements tests</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<link href="#" type="text/css" rel="stylesheet">
|
|
|
|
|
2011-12-11 21:12:20 +04:00
|
|
|
<script type="text/javascript" src="test.js"></script>
|
2011-07-18 01:39:56 +04:00
|
|
|
<style>
|
|
|
|
div{
|
|
|
|
border:2px solid black;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Display:none and visible:hidden tests</h1>
|
|
|
|
<div>This should be visible </div>
|
|
|
|
<div style="display:none">display:none, This should be <b>hidden</b></div>
|
|
|
|
<div style="visibility:hidden">visibility:hidden, This should be <b>hidden</b></div>
|
|
|
|
<hr />
|
|
|
|
<div style="display:none">display:none, This should be <b>hidden</b></div>
|
|
|
|
<div style="visibility:hidden">visibility:hidden, This should be <b>hidden</b></div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|