| 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-srpc" id="nacl" nexe="mandel_nav" | 
| 54              class="viewport" width="500" height="500" onclick="" /> | 54              class="viewport" width="500" height="500"> | 
|  | 55         <noembed> | 
|  | 56           Your browser does not appear to support Native Client. | 
|  | 57           Visit http://code.google.com/p/nativeclient/ to get started. | 
|  | 58         <noembed/> | 
|  | 59       </embed> | 
| 55     </div> <!-- /viewport_column --> | 60     </div> <!-- /viewport_column --> | 
| 56 | 61 | 
| 57   </div> <!-- /viewport div--> | 62   </div> <!-- /viewport div--> | 
| 58   <div id="nacl_time" class="nacl_time"> | 63   <div id="nacl_time" class="nacl_time"> | 
| 59   </div> | 64   </div> | 
| 60 | 65 | 
| 61   <div class="coords"> | 66   <div class="coords"> | 
| 62     <input size=5 id='xright' onchange='nav.mandel.timedDraw()' />, | 67     <input size=5 id='xright' onchange='nav.mandel.timedDraw()' />, | 
| 63     <input size=5 id='ytop' onchange='nav.mandel.timedDraw()' /> | 68     <input size=5 id='ytop' onchange='nav.mandel.timedDraw()' /> | 
| 64     <input size=5 id='xleft' onchange='nav.mandel.timedDraw()' />, | 69     <input size=5 id='xleft' onchange='nav.mandel.timedDraw()' />, | 
| 65     <input size=5 id='ybottom' onchange='nav.mandel.timedDraw()' /> | 70     <input size=5 id='ybottom' onchange='nav.mandel.timedDraw()' /> | 
| 66   </div> | 71   </div> | 
| 67 | 72 | 
| 68 </body> | 73 </body> | 
| 69 </html> | 74 </html> | 
| OLD | NEW | 
|---|