Files
tubestation/browser/components/screenshots/content/screenshots.js
Cosmin Sabou 49b806edcc Backed out 2 changesets (bug 1723583, bug 1722449) for failures on browser_all_files_referenced.js. CLOSED TREE
Backed out changeset 8eb9e75580b6 (bug 1722449)
Backed out changeset 6819370bba6d (bug 1723583)
2021-08-05 19:02:13 +03:00

18 lines
399 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
class ScreenshotsUI extends HTMLElement {
constructor() {
super();
}
get markup() {
return `
`;
}
}
customElements.define("screenshots-div", ScreenshotsUI);