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

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

Issue 99233002: Remove TreatNullAs=NullString for HTMLObjectElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years 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/HTMLObjectElement.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLObjectElement.idl
diff --git a/Source/core/html/HTMLObjectElement.idl b/Source/core/html/HTMLObjectElement.idl
index 11ef0ddaffc60cb92fa1bd1f940c75efd3240ebe..fa84aa204e9c7cadac439f36cbcd99fd1adae785 100644
--- a/Source/core/html/HTMLObjectElement.idl
+++ b/Source/core/html/HTMLObjectElement.idl
@@ -22,22 +22,22 @@
CustomLegacyCall
] interface HTMLObjectElement : HTMLElement {
readonly attribute HTMLFormElement form;
- [Reflect, TreatNullAs=NullString] attribute DOMString code;
- [Reflect, TreatNullAs=NullString] attribute DOMString align;
- [Reflect, TreatNullAs=NullString] attribute DOMString archive;
+ [Reflect] attribute DOMString code;
+ [Reflect] attribute DOMString align;
+ [Reflect] attribute DOMString archive;
[Reflect, TreatNullAs=NullString] attribute DOMString border;
- [Reflect, TreatNullAs=NullString] attribute DOMString codeBase;
- [Reflect, TreatNullAs=NullString] attribute DOMString codeType;
- [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString data;
+ [Reflect, URL] attribute DOMString codeBase;
+ [Reflect] attribute DOMString codeType;
+ [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString data;
[Reflect] attribute boolean declare;
- [Reflect, TreatNullAs=NullString] attribute DOMString height;
+ [Reflect] attribute DOMString height;
[Reflect] attribute long hspace;
- [Reflect, TreatNullAs=NullString] attribute DOMString name;
- [Reflect, TreatNullAs=NullString] attribute DOMString standby;
- [Reflect, TreatNullAs=NullString] attribute DOMString type;
- [Reflect, TreatNullAs=NullString] attribute DOMString useMap;
+ [Reflect] attribute DOMString name;
+ [Reflect] attribute DOMString standby;
+ [Reflect] attribute DOMString type;
+ [Reflect] attribute DOMString useMap;
[Reflect] attribute long vspace;
- [Reflect, TreatNullAs=NullString] attribute DOMString width;
+ [Reflect] attribute DOMString width;
readonly attribute boolean willValidate;
readonly attribute ValidityState validity;
readonly attribute DOMString validationMessage;
@@ -53,4 +53,3 @@
[CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
};
-
« no previous file with comments | « Source/core/html/HTMLObjectElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698