| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <title> Mandelbrot Viewer </title> | 5 <title> Mandelbrot Viewer </title> |
| 6 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> | 6 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> |
| 7 <META HTTP-EQUIV="Expires" CONTENT="-1"> | 7 <META HTTP-EQUIV="Expires" CONTENT="-1"> |
| 8 <link rel="stylesheet" href="mandel_nav.css" type="text/css" media="screen" ti
tle="no title" charset="utf-8"> | 8 <link rel="stylesheet" href="mandel_nav.css" type="text/css" media="screen" ti
tle="no title" charset="utf-8"> |
| 9 <script src="mandel_nav.js" type="text/javascript" charset="utf-8"></script> | 9 <script src="mandel_nav.js" type="text/javascript" charset="utf-8"></script> |
| 10 </head> | 10 </head> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 </div> <!-- /navigation_column --> | 43 </div> <!-- /navigation_column --> |
| 44 | 44 |
| 45 <div class="viewport_column"> | 45 <div class="viewport_column"> |
| 46 <div class="controls"> | 46 <div class="controls"> |
| 47 <div class="cycle_colors_cntl" id="cycle_colors_cntl" | 47 <div class="cycle_colors_cntl" id="cycle_colors_cntl" |
| 48 onclick='nav.mandel.toggleColorShift()'> | 48 onclick='nav.mandel.toggleColorShift()'> |
| 49 <img src="cycle_colors_out.png" class="control_image" | 49 <img src="cycle_colors_out.png" class="control_image" |
| 50 id="cycle_colors_img" alt="Cycle Colors" /> | 50 id="cycle_colors_img" alt="Cycle Colors" /> |
| 51 </div> | 51 </div> |
| 52 </div> | 52 </div> |
| 53 <embed type="application/x-nacl-srpc" id="nacl" src="mandel_nav.nexe" | 53 <embed type="application/x-nacl" id="nacl" src="mandel_nav.nexe" |
| 54 class="viewport" width="500" height="500" onclick="" /> | 54 class="viewport" width="500" height="500" onclick="" /> |
| 55 </div> <!-- /viewport_column --> | 55 </div> <!-- /viewport_column --> |
| 56 | 56 |
| 57 </div> <!-- /viewport div--> | 57 </div> <!-- /viewport div--> |
| 58 <div id="nacl_time" class="nacl_time"> | 58 <div id="nacl_time" class="nacl_time"> |
| 59 </div> | 59 </div> |
| 60 | 60 |
| 61 <div class="coords"> | 61 <div class="coords"> |
| 62 <input size=5 id='xright' onchange='nav.mandel.timedDraw()' />, | 62 <input size=5 id='xright' onchange='nav.mandel.timedDraw()' />, |
| 63 <input size=5 id='ytop' onchange='nav.mandel.timedDraw()' /> | 63 <input size=5 id='ytop' onchange='nav.mandel.timedDraw()' /> |
| 64 <input size=5 id='xleft' onchange='nav.mandel.timedDraw()' />, | 64 <input size=5 id='xleft' onchange='nav.mandel.timedDraw()' />, |
| 65 <input size=5 id='ybottom' onchange='nav.mandel.timedDraw()' /> | 65 <input size=5 id='ybottom' onchange='nav.mandel.timedDraw()' /> |
| 66 </div> | 66 </div> |
| 67 | 67 |
| 68 </body> | 68 </body> |
| 69 </html> | 69 </html> |
| OLD | NEW |