blob: 587656e937a3c87df0d50df734730fe0278e1884 [file] [log] [blame]
John Lee912fb9c02019-08-02 01:28:211// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5import {CustomElement} from './custom_element.js';
6
7class Tab extends CustomElement {
8 static get template() {
9 return `{__html_template__}`;
10 }
11
12 connectedCallback() {
13 this.setAttribute('tabindex', 0);
14 }
15}
16
17customElements.define('tabstrip-tab', Tab);