| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function log(msg) | 5 function log(msg) |
| 6 { | 6 { |
| 7 document.getElementById('console').appendChild(document.createTextNo
de(msg + '\n')); | 7 document.getElementById('console').appendChild(document.createTextNo
de(msg + '\n')); |
| 8 } | 8 } |
| 9 </script> | 9 </script> |
| 10 </head> | 10 </head> |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 var Text = 1; | 208 var Text = 1; |
| 209 log(Text == 1 ? "PASS: Text successfully shadowed" : "FAIL: Text was not
shadowed"); | 209 log(Text == 1 ? "PASS: Text successfully shadowed" : "FAIL: Text was not
shadowed"); |
| 210 var Comment = 1; | 210 var Comment = 1; |
| 211 log(Comment == 1 ? "PASS: Comment successfully shadowed" : "FAIL: Commen
t was not shadowed"); | 211 log(Comment == 1 ? "PASS: Comment successfully shadowed" : "FAIL: Commen
t was not shadowed"); |
| 212 var CDATASection = 1; | 212 var CDATASection = 1; |
| 213 log(CDATASection == 1 ? "PASS: CDATASection successfully shadowed" : "FA
IL: CDATASection was not shadowed"); | 213 log(CDATASection == 1 ? "PASS: CDATASection successfully shadowed" : "FA
IL: CDATASection was not shadowed"); |
| 214 var DocumentType = 1; | 214 var DocumentType = 1; |
| 215 log(DocumentType == 1 ? "PASS: DocumentType successfully shadowed" : "FA
IL: DocumentType was not shadowed"); | 215 log(DocumentType == 1 ? "PASS: DocumentType successfully shadowed" : "FA
IL: DocumentType was not shadowed"); |
| 216 var Notation = 1; | 216 var Notation = 1; |
| 217 log(Notation == 1 ? "PASS: Notation successfully shadowed" : "FAIL: Nota
tion was not shadowed"); | 217 log(Notation == 1 ? "PASS: Notation successfully shadowed" : "FAIL: Nota
tion was not shadowed"); |
| 218 var Entity = 1; | |
| 219 log(Entity == 1 ? "PASS: Entity successfully shadowed" : "FAIL: Entity w
as not shadowed"); | |
| 220 var EntityReference = 1; | |
| 221 log(EntityReference == 1 ? "PASS: EntityReference successfully shadowed"
: "FAIL: EntityReference was not shadowed"); | |
| 222 var ProcessingInstruction = 1; | 218 var ProcessingInstruction = 1; |
| 223 log(ProcessingInstruction == 1 ? "PASS: ProcessingInstruction successful
ly shadowed" : "FAIL: ProcessingInstruction was not shadowed"); | 219 log(ProcessingInstruction == 1 ? "PASS: ProcessingInstruction successful
ly shadowed" : "FAIL: ProcessingInstruction was not shadowed"); |
| 224 var HTMLDocument = 1; | 220 var HTMLDocument = 1; |
| 225 log(HTMLDocument == 1 ? "PASS: HTMLDocument successfully shadowed" : "FA
IL: HTMLDocument was not shadowed"); | 221 log(HTMLDocument == 1 ? "PASS: HTMLDocument successfully shadowed" : "FA
IL: HTMLDocument was not shadowed"); |
| 226 var HTMLElement = 1; | 222 var HTMLElement = 1; |
| 227 log(HTMLElement == 1 ? "PASS: HTMLElement successfully shadowed" : "FAIL
: HTMLElement was not shadowed"); | 223 log(HTMLElement == 1 ? "PASS: HTMLElement successfully shadowed" : "FAIL
: HTMLElement was not shadowed"); |
| 228 var HTMLAnchorElement = 1; | 224 var HTMLAnchorElement = 1; |
| 229 log(HTMLAnchorElement == 1 ? "PASS: HTMLAnchorElement successfully shado
wed" : "FAIL: HTMLAnchorElement was not shadowed"); | 225 log(HTMLAnchorElement == 1 ? "PASS: HTMLAnchorElement successfully shado
wed" : "FAIL: HTMLAnchorElement was not shadowed"); |
| 230 var HTMLAppletElement = 1; | 226 var HTMLAppletElement = 1; |
| 231 log(HTMLAppletElement == 1 ? "PASS: HTMLAppletElement successfully shado
wed" : "FAIL: HTMLAppletElement was not shadowed"); | 227 log(HTMLAppletElement == 1 ? "PASS: HTMLAppletElement successfully shado
wed" : "FAIL: HTMLAppletElement was not shadowed"); |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 log(Range == 1 ? "PASS: Range successfully shadowed" : "FAIL: Range was
not shadowed"); | 341 log(Range == 1 ? "PASS: Range successfully shadowed" : "FAIL: Range was
not shadowed"); |
| 346 var XMLDocument = 1; | 342 var XMLDocument = 1; |
| 347 log(XMLDocument == 1 ? "PASS: XMLDocument successfully shadowed" : "FAIL
: XMLDocument was not shadowed"); | 343 log(XMLDocument == 1 ? "PASS: XMLDocument successfully shadowed" : "FAIL
: XMLDocument was not shadowed"); |
| 348 var DOMParser = 1; | 344 var DOMParser = 1; |
| 349 log(DOMParser == 1 ? "PASS: DOMParser successfully shadowed" : "FAIL: DO
MParser was not shadowed"); | 345 log(DOMParser == 1 ? "PASS: DOMParser successfully shadowed" : "FAIL: DO
MParser was not shadowed"); |
| 350 var XMLSerializer = 1; | 346 var XMLSerializer = 1; |
| 351 log(XMLSerializer == 1 ? "PASS: XMLSerializer successfully shadowed" : "
FAIL: XMLSerializer was not shadowed"); | 347 log(XMLSerializer == 1 ? "PASS: XMLSerializer successfully shadowed" : "
FAIL: XMLSerializer was not shadowed"); |
| 352 </script> | 348 </script> |
| 353 </body> | 349 </body> |
| 354 </html> | 350 </html> |
| OLD | NEW |