mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Add basic HTMLDialogElement interface
This commit is contained in:
parent
4ffeb81aa7
commit
78de6b2db1
7 changed files with 59 additions and 0 deletions
|
@ -51,6 +51,7 @@
|
|||
<time datetime="2014-02-14">Valentines day</time>
|
||||
<area></area>
|
||||
<data></data>
|
||||
<dialog></dialog>
|
||||
<template></template>
|
||||
<pre>pre</pre>
|
||||
<audio>
|
||||
|
@ -111,6 +112,7 @@ check_tag("body", 1, [HTMLBodyElement]);
|
|||
check_tag("area", 1, [HTMLAreaElement]);
|
||||
check_tag("base", 1, [HTMLBaseElement]);
|
||||
check_tag("data", 1, [HTMLDataElement]);
|
||||
check_tag("dialog", 1, [HTMLDialogElement]);
|
||||
check_tag("ol", 1, [HTMLOListElement]);
|
||||
check_tag("canvas", 1, [HTMLCanvasElement]);
|
||||
check_tag("source", 2, [HTMLSourceElement]);
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
create_element_and_check("colgroup", HTMLTableColElement);
|
||||
create_element_and_check("data", HTMLDataElement);
|
||||
create_element_and_check("datalist", HTMLDataListElement);
|
||||
create_element_and_check("dialog", HTMLDialogElement);
|
||||
create_element_and_check("dd", HTMLElement);
|
||||
create_element_and_check("del", HTMLModElement);
|
||||
create_element_and_check("details", HTMLElement);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue