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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.idl

Issue 1415503007: Remove [TreatNullAs=NullString] from title attribute on Document (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 // TODO(yukishiino): Support inheritance of attributes defined on instance. 88 // TODO(yukishiino): Support inheritance of attributes defined on instance.
89 [PutForwards=href, Unforgeable] readonly attribute Location? location; 89 [PutForwards=href, Unforgeable] readonly attribute Location? location;
90 [RaisesException=Setter] attribute DOMString domain; 90 [RaisesException=Setter] attribute DOMString domain;
91 readonly attribute DOMString referrer; 91 readonly attribute DOMString referrer;
92 // FIXME: cookie should not have [TreatNullAs=NullString]. 92 // FIXME: cookie should not have [TreatNullAs=NullString].
93 [TreatNullAs=NullString, RaisesException] attribute DOMString cookie; 93 [TreatNullAs=NullString, RaisesException] attribute DOMString cookie;
94 readonly attribute DOMString lastModified; 94 readonly attribute DOMString lastModified;
95 readonly attribute DocumentReadyState readyState; 95 readonly attribute DocumentReadyState readyState;
96 96
97 // DOM tree accessors 97 // DOM tree accessors
98 // FIXME: title and dir should not have [TreatNullAs=NullString]. 98 [CustomElementCallbacks] attribute DOMString title;
99 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString title; 99 // FIXME: dir should not have [TreatNullAs=NullString].
100 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir; 100 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir;
101 [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings, TypeCheck ing=Interface] attribute HTMLElement? body; 101 [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings, TypeCheck ing=Interface] attribute HTMLElement? body;
102 readonly attribute HTMLHeadElement? head; 102 readonly attribute HTMLHeadElement? head;
103 [SameObject] readonly attribute HTMLCollection images; 103 [SameObject] readonly attribute HTMLCollection images;
104 [SameObject] readonly attribute HTMLCollection embeds; 104 [SameObject] readonly attribute HTMLCollection embeds;
105 [SameObject, ImplementedAs=embeds] readonly attribute HTMLCollection plugins ; 105 [SameObject, ImplementedAs=embeds] readonly attribute HTMLCollection plugins ;
106 [SameObject] readonly attribute HTMLCollection links; 106 [SameObject] readonly attribute HTMLCollection links;
107 [SameObject] readonly attribute HTMLCollection forms; 107 [SameObject] readonly attribute HTMLCollection forms;
108 [SameObject] readonly attribute HTMLCollection scripts; 108 [SameObject] readonly attribute HTMLCollection scripts;
109 [PerWorldBindings] NodeList getElementsByName(DOMString elementName); 109 [PerWorldBindings] NodeList getElementsByName(DOMString elementName);
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 attribute EventHandler onsearch; 222 attribute EventHandler onsearch;
223 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; 223 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation;
224 attribute EventHandler onselectionchange; 224 attribute EventHandler onselectionchange;
225 attribute EventHandler onselectstart; 225 attribute EventHandler onselectstart;
226 attribute EventHandler onwheel; 226 attribute EventHandler onwheel;
227 }; 227 };
228 228
229 Document implements GlobalEventHandlers; 229 Document implements GlobalEventHandlers;
230 Document implements ParentNode; 230 Document implements ParentNode;
231 Document implements NonElementParentNode; 231 Document implements NonElementParentNode;
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698