-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtraHTMLElements.cs
More file actions
35 lines (33 loc) · 878 Bytes
/
ExtraHTMLElements.cs
File metadata and controls
35 lines (33 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using Bridge;
using Bridge.Html5;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DateFormatGenerator
{
[External]
[Name("HTMLDetailsElement")]
public sealed class HTMLDetailsElement : HTMLElement
{
[Template("document.createElement(\"details\")")]
public extern HTMLDetailsElement();
[Name("open")]
public bool Open;
}
[External]
[Name("HTMLElement")]
public sealed class HTMLSummaryElement : HTMLElement
{
[Template("document.createElement(\"summary\")")]
public extern HTMLSummaryElement();
}
[External]
[Name("HTMLElement")]
public sealed class HTMLFooterElement : HTMLElement
{
[Template("document.createElement(\"footer\")")]
public extern HTMLFooterElement();
}
}