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

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

Issue 72583002: Remove TreatNullAs=NullString for HTMLEmbedElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | « LayoutTests/fast/dom/element-attribute-js-null-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLEmbedElement.idl
diff --git a/Source/core/html/HTMLEmbedElement.idl b/Source/core/html/HTMLEmbedElement.idl
index 36a6090e5eec2ac0a689e95fd121dcc6d722a287..aad4db371f476f7403bdb03b240b5f029e718e0d 100644
--- a/Source/core/html/HTMLEmbedElement.idl
+++ b/Source/core/html/HTMLEmbedElement.idl
@@ -21,17 +21,16 @@
[
CustomLegacyCall,
] interface HTMLEmbedElement : HTMLElement {
-[Reflect, TreatNullAs=NullString] attribute DOMString align;
-[Reflect, TreatNullAs=NullString] attribute DOMString height;
-[Reflect, TreatNullAs=NullString] attribute DOMString name;
-[Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src;
-[Reflect, TreatNullAs=NullString] attribute DOMString type;
-[Reflect, TreatNullAs=NullString] attribute DOMString width;
-[Custom, NotEnumerable] getter boolean (unsigned long index);
-[Custom] setter boolean (unsigned long index, Node value);
-[Custom, NotEnumerable] getter Node (DOMString name);
-[Custom] setter Node (DOMString name, Node value);
+ [Reflect] attribute DOMString align;
+ [Reflect] attribute DOMString height;
+ [Reflect] attribute DOMString name;
+ [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src;
+ [Reflect] attribute DOMString type;
+ [Reflect] attribute DOMString width;
+ [Custom, NotEnumerable] getter boolean (unsigned long index);
+ [Custom] setter boolean (unsigned long index, Node value);
+ [Custom, NotEnumerable] getter Node (DOMString name);
+ [Custom] setter Node (DOMString name, Node value);
-[CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
+ [CheckSecurity=Node, RaisesException] SVGDocument getSVGDocument();
};
-
« no previous file with comments | « LayoutTests/fast/dom/element-attribute-js-null-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698