blob: 2d28b2b4feea375cc270a32eef7ad1f6aa2161e5 [file] [log] [blame]
// Copyright 2019 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.
<%
interface = web_idl.find('HTMLElement')
%>
class ${interface.identifier} : public ${interface.inherited.identifier} {
// attributes
% for attribute in interface.attributes:
int ${attribute.identifier};
% endfor
};