| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
| 4 <style id="style" media="screen"> | 4 <style id="style" media="screen"> |
| 5 .non-existent-class { | 5 .non-existent-class { |
| 6 color: rgb(0, 0, 0); | 6 color: rgb(0, 0, 0); |
| 7 } | 7 } |
| 8 </style> | 8 </style> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 test("xmlDocument.createProcessingInstruction('x', '')", "ProcessingInstruct
ion"); | 97 test("xmlDocument.createProcessingInstruction('x', '')", "ProcessingInstruct
ion"); |
| 98 | 98 |
| 99 debug(''); | 99 debug(''); |
| 100 debug('Events'); | 100 debug('Events'); |
| 101 debug(''); | 101 debug(''); |
| 102 | 102 |
| 103 test("document.createEvent('Event')", "Event"); | 103 test("document.createEvent('Event')", "Event"); |
| 104 test("document.createEvent('KeyboardEvent')", "KeyboardEvent"); | 104 test("document.createEvent('KeyboardEvent')", "KeyboardEvent"); |
| 105 test("document.createEvent('MouseEvent')", "MouseEvent"); | 105 test("document.createEvent('MouseEvent')", "MouseEvent"); |
| 106 test("document.createEvent('MutationEvent')", "MutationEvent"); | 106 test("document.createEvent('MutationEvent')", "MutationEvent"); |
| 107 test("document.createEvent('OverflowEvent')", "OverflowEvent"); | |
| 108 test("document.createEvent('TextEvent')", "TextEvent"); | 107 test("document.createEvent('TextEvent')", "TextEvent"); |
| 109 test("document.createEvent('UIEvent')", "UIEvent"); | 108 test("document.createEvent('UIEvent')", "UIEvent"); |
| 110 test("document.createEvent('WheelEvent')", "WheelEvent"); | 109 test("document.createEvent('WheelEvent')", "WheelEvent"); |
| 111 | 110 |
| 112 debug(''); | 111 debug(''); |
| 113 debug('CSS DOM'); | 112 debug('CSS DOM'); |
| 114 debug(''); | 113 debug(''); |
| 115 | 114 |
| 116 test("document.styleSheets", "StyleSheetList"); | 115 test("document.styleSheets", "StyleSheetList"); |
| 117 test("stylesheet", "CSSStyleSheet"); | 116 test("stylesheet", "CSSStyleSheet"); |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 | 286 |
| 288 function frameLoaded() | 287 function frameLoaded() |
| 289 { | 288 { |
| 290 runTest(); | 289 runTest(); |
| 291 } | 290 } |
| 292 | 291 |
| 293 </script> | 292 </script> |
| 294 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic
ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe> | 293 <iframe id="xmlframe" onload="frameLoaded()" style="height:0px" src="data:applic
ation/xhtml+xml,<?xml version='1.0' encoding='UTF-8'?><body/>"></iframe> |
| 295 </body> | 294 </body> |
| 296 </html> | 295 </html> |
| OLD | NEW |