Commit ed56d217 authored by Kent Tamura's avatar Kent Tamura Committed by Commit Bot

Ship form-associated custom elements

Intent to ship: https://groups.google.com/a/chromium.org/d/msg/blink-dev/0w_Z-9_kSNs/QV6ChIapAwAJ

Bug: 905922
Change-Id: Ic5bec9cab0f56e8a95684896536eabb0205d5c16
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1636990Reviewed-by: default avatarHayato Ito <hayato@chromium.org>
Reviewed-by: default avatarChris Harrelson <chrishtr@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#665053}
parent 26fc5960
...@@ -478,6 +478,7 @@ ...@@ -478,6 +478,7 @@
{ {
// http://crbug.com/905922 // http://crbug.com/905922
name: "ElementInternals", name: "ElementInternals",
status: "stable",
implied_by: ["FormAssociatedCustomElements"], implied_by: ["FormAssociatedCustomElements"],
}, },
{ {
...@@ -628,7 +629,7 @@ ...@@ -628,7 +629,7 @@
}, },
{ {
name: "FormAssociatedCustomElements", name: "FormAssociatedCustomElements",
status: "experimental", status: "stable",
}, },
// This is to communicate features::FormControlsRefresh from ui (and can be // This is to communicate features::FormControlsRefresh from ui (and can be
// removed when the feature launches). // removed when the feature launches).
......
...@@ -30,6 +30,7 @@ namespace http://www.w3.org/1999/xhtml ...@@ -30,6 +30,7 @@ namespace http://www.w3.org/1999/xhtml
property append property append
property appendChild property appendChild
property assignedSlot property assignedSlot
property attachInternals
property attachShadow property attachShadow
property attributeStyleMap property attributeStyleMap
property attributes property attributes
......
...@@ -1692,6 +1692,18 @@ interface Element : Node ...@@ -1692,6 +1692,18 @@ interface Element : Node
setter scrollLeft setter scrollLeft
setter scrollTop setter scrollTop
setter slot setter slot
interface ElementInternals
attribute @@toStringTag
getter form
getter labels
getter validationMessage
getter validity
getter willValidate
method checkValidity
method constructor
method reportValidity
method setFormValue
method setValidity
interface EnterPictureInPictureEvent : Event interface EnterPictureInPictureEvent : Event
attribute @@toStringTag attribute @@toStringTag
getter pictureInPictureWindow getter pictureInPictureWindow
...@@ -2266,6 +2278,7 @@ interface HTMLElement : Element ...@@ -2266,6 +2278,7 @@ interface HTMLElement : Element
getter tabIndex getter tabIndex
getter title getter title
getter translate getter translate
method attachInternals
method blur method blur
method click method click
method constructor method constructor
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment