blob: 56732f53b72c6da5a1a28bc7b06c2b29778538c8 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/html/html_data_element.h"
#include "third_party/blink/renderer/core/frame/use_counter.h"
namespace blink {
HTMLDataElement::HTMLDataElement(Document& document)
: HTMLElement(HTMLNames::dataTag, document) {
UseCounter::Count(document, WebFeature::kDataElement);
}
HTMLDataElement* HTMLDataElement::Create(Document& document) {
return new HTMLDataElement(document);
}
} // namespace blink