XMLDOMImplementation.js 971 B

123456789101112131415161718192021222324252627282930313233
  1. // Generated by CoffeeScript 1.12.7
  2. (function() {
  3. var XMLDOMImplementation;
  4. module.exports = XMLDOMImplementation = (function() {
  5. function XMLDOMImplementation() {}
  6. XMLDOMImplementation.prototype.hasFeature = function(feature, version) {
  7. return true;
  8. };
  9. XMLDOMImplementation.prototype.createDocumentType = function(qualifiedName, publicId, systemId) {
  10. throw new Error("This DOM method is not implemented.");
  11. };
  12. XMLDOMImplementation.prototype.createDocument = function(namespaceURI, qualifiedName, doctype) {
  13. throw new Error("This DOM method is not implemented.");
  14. };
  15. XMLDOMImplementation.prototype.createHTMLDocument = function(title) {
  16. throw new Error("This DOM method is not implemented.");
  17. };
  18. XMLDOMImplementation.prototype.getFeature = function(feature, version) {
  19. throw new Error("This DOM method is not implemented.");
  20. };
  21. return XMLDOMImplementation;
  22. })();
  23. }).call(this);