Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / core / html / HTMLImageElement.idl
blobabec4c23ee64e4c238a837c785cff5a3941461ec
1 /*
2 * Copyright (C) 2006, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
21 // https://html.spec.whatwg.org/#the-img-element
23 // TODO(philipj): All long types in this interfaces should be unsigned long.
25 NamedConstructor=Image(optional long width, optional long height),
26 ConstructorCallWith=Document
27 ] interface HTMLImageElement : HTMLElement {
28 [Reflect] attribute DOMString alt;
29 [Reflect, URL] attribute DOMString src;
30 [Reflect] attribute DOMString srcset;
31 [Reflect] attribute DOMString sizes;
32 [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
33 [Reflect] attribute DOMString useMap;
34 [Reflect] attribute boolean isMap;
35 attribute long width;
36 attribute long height;
37 readonly attribute long naturalWidth;
38 readonly attribute long naturalHeight;
39 readonly attribute boolean complete;
40 readonly attribute DOMString currentSrc;
41 [RuntimeEnabled=ReferrerPolicyAttribute, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerpolicy;
43 // obsolete members
44 // https://html.spec.whatwg.org/#HTMLImageElement-partial
45 [Reflect] attribute DOMString name;
46 [Reflect, URL] attribute DOMString lowsrc;
47 [Reflect] attribute DOMString align;
48 [Reflect] attribute long hspace;
49 [Reflect] attribute long vspace;
50 [Reflect, URL] attribute DOMString longDesc;
52 [Reflect, TreatNullAs=EmptyString] attribute DOMString border;
54 // CSSOM View Module
55 // http://dev.w3.org/csswg/cssom-view/#extensions-to-the-htmlimageelement-interface
56 [MeasureAs=HTMLImageElementX] readonly attribute long x;
57 [MeasureAs=HTMLImageElementY] readonly attribute long y;