Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../../resources/js-test.js"></script> | |
| 5 </head> | |
| 6 <body> | |
| 7 <script> | |
| 8 var doctype = document.implementation.createDocumentType(null, null, null); | |
| 9 shouldBeEqualToString("doctype.name", "null"); | |
| 10 shouldBeEqualToString("doctype.publicId", "null"); | |
| 11 shouldBeEqualToString("doctype.systemId", "null"); | |
| 12 </script> | |
| 13 </body> | |
| 14 </html> | |
| OLD | NEW |