OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 function print(message, color) { | 4 function print(message, color) { |
5 var paragraph = document.createElement("div"); | 5 var paragraph = document.createElement("div"); |
6 paragraph.appendChild(document.createTextNode(message)); | 6 paragraph.appendChild(document.createTextNode(message)); |
7 paragraph.style.fontFamily = "monospace"; | 7 paragraph.style.fontFamily = "monospace"; |
8 if (color) | 8 if (color) |
9 paragraph.style.color = color; | 9 paragraph.style.color = color; |
10 document.getElementById("console").appendChild(paragraph); | 10 document.getElementById("console").appendChild(paragraph); |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 </select> | 106 </select> |
107 </form> | 107 </form> |
108 <select style="position:absolute; top: 408;" size="3" onmousedown="mouseeventver
ify(event, 22, 448, 12, 38, this, 'mousedown')"> | 108 <select style="position:absolute; top: 408;" size="3" onmousedown="mouseeventver
ify(event, 22, 448, 12, 38, this, 'mousedown')"> |
109 <option>One | 109 <option>One |
110 <option id="o5" onmousedown="mouseeventverify(event, 22, 448, 12, 38, this, 'mou
sedown')">Two | 110 <option id="o5" onmousedown="mouseeventverify(event, 22, 448, 12, 38, this, 'mou
sedown')">Two |
111 </select> | 111 </select> |
112 </form> | 112 </form> |
113 <div style="position:absolute; top: 550;" id='console'></div> | 113 <div style="position:absolute; top: 550;" id='console'></div> |
114 </body> | 114 </body> |
115 </html> | 115 </html> |
OLD | NEW |