blob: 3b2fe4666cedce3e9c17b84563257d5b5fc9f7be [file] [log] [blame]
// Copyright 2014 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_HTML_RT_ELEMENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_HTML_RT_ELEMENT_H_
#include "third_party/blink/renderer/core/html/html_element.h"
namespace blink {
// <rt> is an HTMLElement in script, but we use a separate interface here
// so HTMLElement's createLayoutObject doesn't need to know about it.
class HTMLRTElement final : public HTMLElement {
public:
explicit HTMLRTElement(Document&);
private:
LayoutObject* CreateLayoutObject(const ComputedStyle&, LegacyLayout) override;
};
} // namespace blink
#endif