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

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

Issue 68503013: Remove TreatNullAs=NullString for <frame>, <frameset> and <iframe> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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
Index: Source/core/html/HTMLFrameElement.idl
diff --git a/Source/core/html/HTMLFrameElement.idl b/Source/core/html/HTMLFrameElement.idl
index cc992adc06aba771af686019afe2bb4aec02a1b7..1ab494ce552ae132d1ed0d9b0e0ef3c210288e6a 100644
--- a/Source/core/html/HTMLFrameElement.idl
+++ b/Source/core/html/HTMLFrameElement.idl
@@ -20,14 +20,14 @@
interface HTMLFrameElement : HTMLElement {
- [Reflect, TreatNullAs=NullString] attribute DOMString frameBorder;
- [Reflect, TreatNullAs=NullString] attribute DOMString longDesc;
+ [Reflect] attribute DOMString frameBorder;
+ [Reflect, URL] attribute DOMString longDesc;
[Reflect, TreatNullAs=NullString] attribute DOMString marginHeight;
[Reflect, TreatNullAs=NullString] attribute DOMString marginWidth;
- [Reflect, TreatNullAs=NullString] attribute DOMString name;
+ [Reflect] attribute DOMString name;
[Reflect] attribute boolean noResize;
- [Reflect, TreatNullAs=NullString] attribute DOMString scrolling;
- [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src;
+ [Reflect] attribute DOMString scrolling;
+ [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src;
// Introduced in DOM Level 2:
[CheckSecurity=Node] readonly attribute Document contentDocument;
@@ -41,6 +41,4 @@ interface HTMLFrameElement : HTMLElement {
readonly attribute long width;
readonly attribute long height;
-
};
-
« no previous file with comments | « LayoutTests/fast/dom/element-attribute-js-null-expected.txt ('k') | Source/core/html/HTMLFrameElementBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698