aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/button/button_ticket_5254.html
blob: 9031861e948be3abd26e541bdb589e240a5502d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8" />
	<title>Button Visual Test : Button ticket #5254</title>
	<link rel="stylesheet" href="../visual.css" type="text/css" />
	<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
	<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
	<script type="text/javascript">
	$(function() {

	$('#b1').button();

	$('#b2').button();

	$('#b3').button().click(function() {
		return false;
	});

	$('#ua').text(navigator.userAgent);

	});
	</script>
</head>
<body>

<h1 class="ui-widget-header"><a href="http://dev.jqueryui.com/ticket/5254">#5254 - Input, button and anchor buttons aren't consistent in IE7</a></h1>

<dl>
<dt><h2>Screenshot from ticket:</h2></dt>
<dd><img src="http://dev.jqueryui.com/raw-attachment/ticket/5254/button.png"></dd>
</dl>

<hr>

<dl>
<dt><h2>Visual test:</h2></dt>
<dd>
	<div id="vt">
		<input id="b1" type="button" value="Input" style="" />
		<button id="b2">Button</button>
		<a  id="b3" href="#">Anchor</a>
	</div>
</dd>
<dt><h2>User agent:</h2></dt>
<dd>
	<h3 id="ua"></h3>
</dd>
</dl>

</body>
</html>