aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js')
-rw-r--r--vanilla/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/vanilla/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js b/vanilla/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js
deleted file mode 100644
index 858df85..0000000
--- a/vanilla/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js
+++ /dev/null
@@ -1,13 +0,0 @@
-"use strict";
-
-const HTMLElementImpl = require("./HTMLElement-impl").implementation;
-
-class HTMLTrackElementImpl extends HTMLElementImpl {
- get readyState() {
- return 0;
- }
-}
-
-module.exports = {
- implementation: HTMLTrackElementImpl
-};