Skip to main content

Bug Tracker

Side navigation

Ticket #3238: 3238.html


File 3238.html, 0.8 KB (added by nathanhammond, August 15, 2008 05:56AM UTC)

Test Case

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>3238 Test Case</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
	$('#test1').show();
	$('#test2').fadeIn(300);
});
</script>

<style type="text/css">
	body { background: transparent url('http://static.jquery.com/files/design/images/logo_jquery3.png') left top repeat; }
	div { width: 300px; height: 300px; display: none; background-color: red; -moz-opacity: 0.7; opacity: 0.7; }
</style>
</head>

<body>
	<div id="test1" style="filter:alpha(opacity=70);">Test</div>
	<div id="test2" style="filter:alpha(opacity=70);">Test</div>
</body>

</html>

Download in other formats:

Original Format