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

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

Issue 1180793002: Document attribute charset and its aliases to return UTF-8 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 // FIXME: The typeExtension arguments should not be nullable. 190 // FIXME: The typeExtension arguments should not be nullable.
191 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl ement(DOMString localName, DOMString? typeExtension); 191 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl ement(DOMString localName, DOMString? typeExtension);
192 [CustomElementCallbacks, RaisesException] Element createElementNS(DOMString? namespaceURI, DOMString qualifiedName, DOMString? typeExtension); 192 [CustomElementCallbacks, RaisesException] Element createElementNS(DOMString? namespaceURI, DOMString qualifiedName, DOMString? typeExtension);
193 193
194 // Page Visibility 194 // Page Visibility
195 // http://www.w3.org/TR/page-visibility/#sec-document-interface 195 // http://www.w3.org/TR/page-visibility/#sec-document-interface
196 readonly attribute boolean hidden; 196 readonly attribute boolean hidden;
197 readonly attribute VisibilityState visibilityState; 197 readonly attribute VisibilityState visibilityState;
198 198
199 // Non-standard APIs 199 // Non-standard APIs
200 [MeasureAs=DocumentCharset, TreatReturnedNullStringAs=Undefined] readonly at tribute DOMString charset; 200 [MeasureAs=DocumentCharset] readonly attribute DOMString charset;
201 [MeasureAs=DocumentDefaultCharset, TreatReturnedNullStringAs=Undefined] read only attribute DOMString defaultCharset; 201 [MeasureAs=DocumentDefaultCharset] readonly attribute DOMString defaultChars et;
202 [MeasureAs=DocumentCaretRangeFromPoint] Range caretRangeFromPoint([Default=U ndefined] optional long x, [Default=Undefined] optional long y); 202 [MeasureAs=DocumentCaretRangeFromPoint] Range caretRangeFromPoint([Default=U ndefined] optional long x, [Default=Undefined] optional long y);
203 [DeprecateAs=DocumentGetCSSCanvasContext] RenderingContext getCSSCanvasConte xt(DOMString contextId, DOMString name, long width, long height); 203 [DeprecateAs=DocumentGetCSSCanvasContext] RenderingContext getCSSCanvasConte xt(DOMString contextId, DOMString name, long width, long height);
204 204
205 // Deprecated prefixed page visibility API. 205 // Deprecated prefixed page visibility API.
206 // TODO(davidben): This is a property so attaching a deprecation warning res ults in false positives when outputting 206 // TODO(davidben): This is a property so attaching a deprecation warning res ults in false positives when outputting
207 // document in the console. It's possible http://crbug.com/43394 will resolv e this. 207 // document in the console. It's possible http://crbug.com/43394 will resolv e this.
208 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a ttribute DOMString webkitVisibilityState; 208 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a ttribute DOMString webkitVisibilityState;
209 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute boolean webkitHidden; 209 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute boolean webkitHidden;
210 210
211 // Event handler attributes 211 // Event handler attributes
212 attribute EventHandler onbeforecopy; 212 attribute EventHandler onbeforecopy;
213 attribute EventHandler onbeforecut; 213 attribute EventHandler onbeforecut;
214 attribute EventHandler onbeforepaste; 214 attribute EventHandler onbeforepaste;
215 attribute EventHandler oncopy; 215 attribute EventHandler oncopy;
216 attribute EventHandler oncut; 216 attribute EventHandler oncut;
217 attribute EventHandler onpaste; 217 attribute EventHandler onpaste;
218 attribute EventHandler onsearch; 218 attribute EventHandler onsearch;
219 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; 219 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation;
220 attribute EventHandler onselectionchange; 220 attribute EventHandler onselectionchange;
221 attribute EventHandler onselectstart; 221 attribute EventHandler onselectstart;
222 attribute EventHandler onwheel; 222 attribute EventHandler onwheel;
223 }; 223 };
224 224
225 Document implements GlobalEventHandlers; 225 Document implements GlobalEventHandlers;
226 Document implements ParentNode; 226 Document implements ParentNode;
227 Document implements NonElementParentNode; 227 Document implements NonElementParentNode;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698