<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html 
     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<?xml-stylesheet type="text/xsl" href="fractal.xsl"?>


<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
	<head>
		<title>Testing fractals</title>
		<style type="text/css">
			.fractal { background: black; border-collapse: collapse; }
			.fractal tr { margin: 0px; padding: 0px; }
			.fractal td { margin: 0px; padding: 0px; width: 10px; height: 10px; }
		</style>
	</head>
	<body>
		<h1>Testing mandel and julia fractals</h1>

		<p><fr:fractal xmlns:fr="http://mzlair.se/xslfractal.php">
			<tt><fr:for-imaginary from="-1" to="1" steps="20">
				<fr:for-real from="-2" to="1" steps="40">
					<fr:mandelbrot iteration-limit="32">
						<fr:infinite-color>&#160;</fr:infinite-color>
						<fr:color>X</fr:color>
					</fr:mandelbrot>
				</fr:for-real>
				<br/>
			</fr:for-imaginary></tt>
		</fr:fractal></p>


		<fr:fractal xmlns:fr="http://mzlair.se/xslfractal.php">
			<table class="fractal"><fr:for-imaginary from="-1" to="1" steps="40">
				<tr><fr:for-real from="-2" to="1" steps="60">
					<fr:mandelbrot iteration-limit="32">
						<fr:infinite-color><td/></fr:infinite-color>
						<fr:color>
							<td style="background: #ff0000"/>
						</fr:color>
						<fr:color>
							<td style="background: #ff8000"/>
						</fr:color>
						<fr:color>
							<td style="background: #ff8000"/>
						</fr:color>
						<fr:color>
							<td style="background: #ffff00"/>
						</fr:color>
						<fr:color>
							<td style="background: #80ff00"/>
						</fr:color>
						<fr:color>
							<td style="background: #00ff00"/>
						</fr:color>
						<fr:color>
							<td style="background: #00ff80"/>
						</fr:color>
						<fr:color>
							<td style="background: #00ffff"/>
						</fr:color>
						<fr:color>
							<td style="background: #0080ff"/>
						</fr:color>
						<fr:color>
							<td style="background: #0000ff"/>
						</fr:color>
						<fr:color>
							<td style="background: #8000ff"/>
						</fr:color>
						<fr:color>
							<td style="background: #ff00ff"/> 
						</fr:color>
					</fr:mandelbrot>
				</fr:for-real></tr>
			</fr:for-imaginary></table>
		</fr:fractal>

		<fr:fractal xmlns:fr="http://mzlair.se/xslfractal.php">
			<table class="fractal"><fr:for-imaginary from="-1" to="1" steps="40">
				<tr><fr:for-real from="-1" to="1" steps="40">
					<fr:julia iteration-limit="32" real="0.33" imaginary="0.4">
						<fr:infinite-color><td/></fr:infinite-color>
						<fr:color>
							<td style="background: #ff0000"/>
						</fr:color>
						<fr:color>
							<td style="background: #ff8000"/>
						</fr:color>
						<fr:color>
							<td style="background: #ff8000"/>
						</fr:color>
						<fr:color>
							<td style="background: #ffff00"/>
						</fr:color>
						<fr:color>
							<td style="background: #80ff00"/>
						</fr:color>
						<fr:color>
							<td style="background: #00ff00"/>
						</fr:color>
						<fr:color>
							<td style="background: #00ff80"/>
						</fr:color>
						<fr:color>
							<td style="background: #00ffff"/>
						</fr:color>
						<fr:color>
							<td style="background: #0080ff"/>
						</fr:color>
						<fr:color>
							<td style="background: #0000ff"/>
						</fr:color>
						<fr:color>
							<td style="background: #8000ff"/>
						</fr:color>
						<fr:color>
							<td style="background: #ff00ff"/> 
						</fr:color>
					</fr:julia>
				</fr:for-real></tr>
			</fr:for-imaginary></table>
		</fr:fractal>
	</body>
</html>




