christophehurpeau/html-document

View on GitHub
src/HTMLElement/elements/HTMLTableCaptionElement.js

Summary

Maintainability
A
0 mins
Test Coverage
import HTMLElement from '../../HTMLElement';

/**
 * <caption> element.
 */
export default class HTMLTableCaptionElement extends HTMLElement {
}

/**
 * @constant {string} HTMLTableCaptionElement#nodeName option
 */
Object.defineProperty(HTMLTableCaptionElement.prototype, 'nodeName', { value: 'caption' });