This test checks fo:inlines which generate multiple consecutive inlineblockparent areas. Each inlineblockparent area should appear in its own line area. Two cases: 1. A block containing multiple lines. 2. A block containing multiple child blocks which must be kept together (so that there are not break positions between the positions for the blocks).

Implicitly this test checks whether inline block content does not generate ClassCastExceptions. The exceptions would occur because an UnresolvedElement in a list of ListElements would be cast to a KnuthElement.

before block As far as the laws of mathematics refer to reality, they are not certain, and as far as they are certain, they do not refer to reality - Albert Einstein after block before block A1=B1, A2=B2. after block
/default.html?h=dependabot/github_actions/github-actions-f50e11107c'>logtreecommitdiffstats
path: root/demos/toggleClass/default.html
blob: ed3eb5179b7aa5792401e13359315bc35d4edea9 (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
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Effects - toggleClass Demo</title>
	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
	<script src="../../jquery-1.5.1.js"></script>
	<script src="../../ui/jquery.effects.core.js"></script>
	<link rel="stylesheet" href="../demos.css">
	<style>
	.toggler { width: 500px; height: 200px; position: relative; }
	#button { padding: .5em 1em; text-decoration: none; }
	#effect {position: relative;  width: 240px;  padding: 1em; letter-spacing: 0; font-size: 1.2em; border: 1px solid #000; background: #eee; color: #333; }
	.newClass { text-indent: 40px; letter-spacing: .4em; width: 410px; height: 100px; padding: 30px; margin: 10px; font-size: 1.6em; }
	</style>
	<script>
	$(function() {
		$( "#button" ).click(function() {
			$( "#effect" ).toggleClass( "newClass", 1000 );
			return false;
		});
	});
	</script>
</head>
<body>

<div class="demo">

<div class="toggler">
	<div id="effect" class="newClass ui-corner-all">
			Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. 
	</div>
</div>

<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>

</div><!-- End demo -->



<div class="demo-description">
<p>Click the button above to preview the effect.</p>
</div><!-- End demo-description -->

</body>
</html>