Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(669)

Unified Diff: Source/core/html/HTMLOutputElement.idl

Issue 1028633005: Sync HTML element interfaces O-Q with the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: clear up HTMLImageElement confusion Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLOptionElement.idl ('k') | Source/core/html/HTMLParagraphElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLOutputElement.idl
diff --git a/Source/core/html/HTMLOutputElement.idl b/Source/core/html/HTMLOutputElement.idl
index 75d073b2f22b281c3cb4612d91b3c27325ccc8a8..f85fd0904f4e3ba053214b2408829150c1966927 100644
--- a/Source/core/html/HTMLOutputElement.idl
+++ b/Source/core/html/HTMLOutputElement.idl
@@ -22,9 +22,11 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://html.spec.whatwg.org/#htmloutputelement
+
interface HTMLOutputElement : HTMLElement {
[PutForwards=value] readonly attribute DOMSettableTokenList htmlFor;
- [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
+ [ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
[Reflect] attribute DOMString name;
readonly attribute DOMString type;
@@ -36,6 +38,7 @@ interface HTMLOutputElement : HTMLElement {
readonly attribute DOMString validationMessage;
boolean checkValidity();
boolean reportValidity();
+ // TODO(philipj): The error argument should not be nullable.
void setCustomValidity([TreatUndefinedAs=NullString] DOMString? error);
readonly attribute NodeList labels;
« no previous file with comments | « Source/core/html/HTMLOptionElement.idl ('k') | Source/core/html/HTMLParagraphElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698