UNPKG

315 BJavaScriptView Raw
1const HTMLElement = require('./HTMLElement');
2const {image, descriptors} = require('./ImagePrototype');
3
4class Image extends HTMLElement {
5 constructor(ownerDocument) {
6 super(ownerDocument, 'img');
7 image.set(this, {});
8 }
9}
10
11Object.defineProperties(Image.prototype, descriptors);
12
13module.exports = Image;