blob: 44f4412c3f621eda4737a75f115c8a9c70458f44 (
plain)
1
2
3
4
5
6
7
8
|
"use strict";
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
class HTMLSourceElementImpl extends HTMLElementImpl {}
module.exports = {
implementation: HTMLSourceElementImpl
};
|