| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style type="text/css"> | 3 <style type="text/css"> |
| 4 .pass { color: green; } | 4 .pass { color: green; } |
| 5 .fail { color: red; } | 5 .fail { color: red; } |
| 6 </style> | 6 </style> |
| 7 <script> | 7 <script> |
| 8 function printOut(msg) | 8 function printOut(msg) |
| 9 { | 9 { |
| 10 var console = document.getElementById("console"); | 10 var console = document.getElementById("console"); |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 elementToUse: document.createElement('head'), | 287 elementToUse: document.createElement('head'), |
| 288 attributes: [ | 288 attributes: [ |
| 289 {name: 'profile', expectedNull: ''} | 289 {name: 'profile', expectedNull: ''} |
| 290 ] | 290 ] |
| 291 }, | 291 }, |
| 292 { | 292 { |
| 293 type: 'HTMLHeadingElement', | 293 type: 'HTMLHeadingElement', |
| 294 // no need to test h2-h6 | 294 // no need to test h2-h6 |
| 295 elementToUse: document.createElement('h1'), | 295 elementToUse: document.createElement('h1'), |
| 296 attributes: [ | 296 attributes: [ |
| 297 {name: 'align', expectedNull: ''} | 297 {name: 'align', expectedNull: 'null'} |
| 298 ] | 298 ] |
| 299 }, | 299 }, |
| 300 { | 300 { |
| 301 type: 'HTMLHRElement', | 301 type: 'HTMLHRElement', |
| 302 elementToUse: document.createElement('hr'), | 302 elementToUse: document.createElement('hr'), |
| 303 attributes: [ | 303 attributes: [ |
| 304 {name: 'align', expectedNull: 'null'}, | 304 {name: 'align', expectedNull: 'null'}, |
| 305 {name: 'color', expectedNull: 'null'}, | 305 {name: 'color', expectedNull: 'null'}, |
| 306 {name: 'size', expectedNull: 'null'}, | 306 {name: 'size', expectedNull: 'null'}, |
| 307 {name: 'width', expectedNull: 'null'} | 307 {name: 'width', expectedNull: 'null'} |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 printOut(''); | 716 printOut(''); |
| 717 } | 717 } |
| 718 } | 718 } |
| 719 </script> | 719 </script> |
| 720 </head> | 720 </head> |
| 721 <body onload="runTests()"> | 721 <body onload="runTests()"> |
| 722 <p>This test setting various attributes of a elements to JavaScript null.</p
> | 722 <p>This test setting various attributes of a elements to JavaScript null.</p
> |
| 723 <div id="console"></div> | 723 <div id="console"></div> |
| 724 </body> | 724 </body> |
| 725 </html> | 725 </html> |
| OLD | NEW |