Skip to content

Commit 7371318

Browse files
committed
tests/static: whitespace only
1 parent 3831866 commit 7371318

10 files changed

Lines changed: 1246 additions & 1292 deletions

File tree

tests/static/accordion.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
</head>
99
<body style="font-size: 62.5%;">
1010

11-
1211
<div class="ui-accordion ui-widget ui-helper-reset">
1312
<div class="ui-accordion-group selected">
1413
<h3 class="ui-accordion-header ui-helper-reset ui-state-active ui-corner-top" tabindex="0"><span class="ui-icon ui-icon-triangle-1-s"></span><a href="#">Test 1</a></h3>

tests/static/datepicker.html

Lines changed: 1185 additions & 1208 deletions
Large diffs are not rendered by default.

tests/static/dialog.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
</head>
99
<body style="font-size: 62.5%;">
1010

11-
1211
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all" role="dialog" aria-labelledby="ui-dialog-title-1">
1312
<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
1413
<span class="ui-dialog-title" id="ui-dialog-title-1">This is my title</span>

tests/static/highlight_error.html

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
11
<!html>
22
<html>
3-
<head>
4-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5-
<title>Themeroller CSS Framework Demo</title>
6-
<link rel="stylesheet" href="../../themes/base/ui.all.css" type="text/css" />
7-
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
8-
<script type="text/javascript" src="static_helpers.js"></script>
9-
<style type="text/css">
10-
body {font-size: 62.5%; margin: 20px; font-family: Verdana, sans-serif; color: #444;}
11-
h1 {font-size: 1.5em; margin: 1em 0;}
12-
h2 {font-size: 1.3em; margin: 2em 0 .5em;}
13-
h2 a {font-size: .8em;}
14-
p {font-size: 1.2em; }
15-
form {margin: 4em 0;}
16-
div {padding: .2em .5em;}
17-
.ui-icon {float: left; margin-right: .5em;}
18-
19-
form div.ui-state-error-text {background: none; border: 0;}
20-
</style>
21-
</head>
22-
<body>
23-
24-
25-
26-
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5+
<title>Themeroller CSS Framework Demo</title>
6+
<link rel="stylesheet" href="../../themes/base/ui.all.css" type="text/css" />
7+
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
8+
<script type="text/javascript" src="static_helpers.js"></script>
9+
<style type="text/css">
10+
body {font-size: 62.5%; margin: 20px; font-family: Verdana, sans-serif; color: #444;}
11+
h1 {font-size: 1.5em; margin: 1em 0;}
12+
h2 {font-size: 1.3em; margin: 2em 0 .5em;}
13+
h2 a {font-size: .8em;}
14+
p {font-size: 1.2em; }
15+
form {margin: 4em 0;}
16+
div {padding: .2em .5em;}
17+
.ui-icon {float: left; margin-right: .5em;}
18+
form div.ui-state-error-text {background: none; border: 0;}
19+
</style>
20+
</head>
21+
<body>
22+
2723
<h2>Error State</h2>
2824

2925
<div class="ui-state-error ui-corner-all" style="width: 420px;">
@@ -83,7 +79,6 @@ <h2>Highlight State</h2>
8379
</fieldset>
8480

8581
</form>
86-
</body>
87-
</html>
88-
8982

83+
</body>
84+
</html>

tests/static/icons.html

Lines changed: 34 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,38 @@
11
<!doctype html>
22
<html>
3-
<head>
4-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5-
<title>Themeroller CSS Framework Demo</title>
6-
<script src="http://ui.jquery.com/js/jquery.js"></script>
7-
<script src="http://www.filamentgroup.com/examples/preloadImages/scripts/preloadCssImages.jQuery_v5.js"></script>
8-
9-
<link rel="stylesheet" href="http://jquery-ui.googlecode.com/svn/trunk/themes/base/ui.core.css" type="text/css" media="screen" />
10-
11-
<style type="text/css">
12-
body {font-size: 62.5%; margin: 20px; font-family: Verdana, sans-serif; color: #444;}
13-
h1 {font-size: 1.5em; margin: 1em 0;}
14-
h2 {font-size: 1.3em; margin: 2em 0 .5em;}
15-
h2 a {font-size: .8em;}
16-
p {font-size: 1.2em; }
17-
ul {margin: 0; padding: 0;}
18-
li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left; list-style: none;}
19-
span.ui-icon {float: left; margin: 0 4px;}
20-
span.text {float: left; width: 180px;}
21-
</style>
22-
<script type="text/javascript">
23-
$(function(){
24-
$('.ui-state-default').hover(
25-
function(){ $(this).addClass('ui-state-hover'); },
26-
function(){ $(this).removeClass('ui-state-hover'); }
27-
);
28-
$('.ui-state-default').click(function(){ $(this).toggleClass('ui-state-active'); });
29-
$('.icons').append(' <a href="#">Toggle text</a>').find('a').click(function(){ $('.icon-collection li span.text').toggle(); }).trigger('click');
30-
$.preloadCssImages();
31-
});
32-
</script>
33-
</head>
34-
<body>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5+
<title>Themeroller CSS Framework Demo</title>
6+
<script src="http://ui.jquery.com/js/jquery.js"></script>
7+
<script src="http://www.filamentgroup.com/examples/preloadImages/scripts/preloadCssImages.jQuery_v5.js"></script>
8+
9+
<link rel="stylesheet" href="http://jquery-ui.googlecode.com/svn/trunk/themes/base/ui.core.css" type="text/css" media="screen" />
10+
11+
<style type="text/css">
12+
body {font-size: 62.5%; margin: 20px; font-family: Verdana, sans-serif; color: #444;}
13+
h1 {font-size: 1.5em; margin: 1em 0;}
14+
h2 {font-size: 1.3em; margin: 2em 0 .5em;}
15+
h2 a {font-size: .8em;}
16+
p {font-size: 1.2em; }
17+
ul {margin: 0; padding: 0;}
18+
li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left; list-style: none;}
19+
span.ui-icon {float: left; margin: 0 4px;}
20+
span.text {float: left; width: 180px;}
21+
</style>
22+
23+
<script type="text/javascript">
24+
$(function(){
25+
$('.ui-state-default').hover(
26+
function(){ $(this).addClass('ui-state-hover'); },
27+
function(){ $(this).removeClass('ui-state-hover'); }
28+
);
29+
$('.ui-state-default').click(function(){ $(this).toggleClass('ui-state-active'); });
30+
$('.icons').append(' <a href="#">Toggle text</a>').find('a').click(function(){ $('.icon-collection li span.text').toggle(); }).trigger('click');
31+
$.preloadCssImages();
32+
});
33+
</script>
34+
</head>
35+
<body>
3536

3637
<p class="icons"></p>
3738

@@ -228,7 +229,5 @@
228229
<li class="ui-state-default ui-corner-all" title=".ui-icon-grip-diagonal-se"><span class="ui-icon ui-icon-grip-diagonal-se"></span><span class="text">.ui-icon-grip-diagonal-se</span></li>
229230
</ul>
230231

231-
232-
</body>
232+
</body>
233233
</html>
234-

tests/static/overlay.html

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
77
<script type="text/javascript" src="static_helpers.js"></script>
88
<script type="text/javascript">
9-
10-
9+
1110
//overlay sample plugin ( to become part of positionTo )
1211
$.fn.overlay = function(){
1312
var that = this;
@@ -38,10 +37,6 @@
3837
</head>
3938
<body style="font-size: 62.5%;">
4039

41-
42-
43-
44-
4540
<!-- ui-dialog -->
4641
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all" style="position: absolute; left: 300px; top: 200px; width: 300px; ">
4742
<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">

tests/static/progressbar.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,9 @@
88
</head>
99
<body style="font-size: 62.5%;">
1010

11-
12-
1311
<div class="ui-progressbar ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="13">
1412
<div class="ui-progressbar-value ui-state-default ui-corner-left" style="width:13%;"></div>
1513
</div>
1614

17-
18-
1915
</body>
2016
</html>

tests/static/slider.html

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,18 @@
1111
</head>
1212
<body style="font-size: 62.5%;">
1313

14-
1514
<div class="ui-slider ui-widget ui-widget-content ui-corner-all">
1615
<a href="#" class="ui-slider-handle ui-state-default ui-corner-all" style="left: 15%;"></a>
1716
<a href="#" class="ui-slider-handle ui-state-default ui-corner-all" style="left: 30%;"></a>
1817
<div class="ui-slider-range ui-state-default" style="left: 15%; width: 15%;"></div>
1918
</div>
2019

21-
22-
<!-- vertical -->
23-
24-
20+
<!-- vertical -->
2521
<div class="ui-slider ui-slider-vertical ui-widget ui-widget-content ui-corner-all" style="height: 100px;">
2622
<a href="#" class="ui-slider-handle ui-state-default ui-corner-all" style="top: 15%;"></a>
2723
<a href="#" class="ui-slider-handle ui-state-default ui-corner-all" style="top: 60%;"></a>
2824
<div class="ui-slider-range ui-state-default" style="top: 15%; height: 45%;"></div>
2925
</div>
3026

31-
3227
</body>
3328
</html>

tests/static/static_helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ $(function(){
44
function(){ $(this).addClass('ui-state-hover'); },
55
function(){ $(this).removeClass('ui-state-hover'); }
66
);
7-
});
7+
});

tests/static/tabs.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
<head>
44
<title>jQuery UI Tabs Static Markup Test Page</title>
55
<link rel="stylesheet" href="../../themes/base/ui.all.css" type="text/css" />
6-
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
7-
<script type="text/javascript" src="static_helpers.js"></script>
6+
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
7+
<script type="text/javascript" src="static_helpers.js"></script>
88
</head>
99
<body style="font-size: 62.5%;">
1010

11-
1211
<div class="ui-tabs ui-widget ui-widget-content ui-corner-all">
1312
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
1413
<li class="ui-tabs-selected ui-state-active ui-corner-top"><a href="#fragment-1">First Section</a></li>

0 commit comments

Comments
 (0)