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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLElement.idl

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 3 years, 7 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, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
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 14 matching lines...) Expand all
25 [CEReactions, Reflect] attribute DOMString title; 25 [CEReactions, Reflect] attribute DOMString title;
26 [CEReactions, Reflect] attribute DOMString lang; 26 [CEReactions, Reflect] attribute DOMString lang;
27 [CEReactions] attribute boolean translate; 27 [CEReactions] attribute boolean translate;
28 [CEReactions] attribute DOMString dir; 28 [CEReactions] attribute DOMString dir;
29 [SameObject, PerWorldBindings] readonly attribute DOMStringMap dataset; 29 [SameObject, PerWorldBindings] readonly attribute DOMStringMap dataset;
30 30
31 // user interaction 31 // user interaction
32 [CEReactions, Reflect] attribute boolean hidden; 32 [CEReactions, Reflect] attribute boolean hidden;
33 void click(); 33 void click();
34 [CEReactions, CustomElementCallbacks] attribute long tabIndex; 34 [CEReactions, CustomElementCallbacks] attribute long tabIndex;
35 [RuntimeEnabled=InertAttribute, Reflect] attribute boolean inert;
kochi 2017/05/22 07:31:15 Can you add "CEReactions" extended attribute here
aboxhall 2017/05/23 02:45:43 Done, thanks for the explanation!
35 void focus(); 36 void focus();
36 void blur(); 37 void blur();
37 [CEReactions, Reflect] attribute DOMString accessKey; 38 [CEReactions, Reflect] attribute DOMString accessKey;
38 [CEReactions, CustomElementCallbacks] attribute boolean draggable; 39 [CEReactions, CustomElementCallbacks] attribute boolean draggable;
39 [CEReactions, RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? context Menu; 40 [CEReactions, RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? context Menu;
40 [CEReactions] attribute boolean spellcheck; 41 [CEReactions] attribute boolean spellcheck;
41 42
42 // HTMLElement implements ElementContentEditable 43 // HTMLElement implements ElementContentEditable
43 // https://html.spec.whatwg.org/#contenteditable 44 // https://html.spec.whatwg.org/#contenteditable
44 [CEReactions, CustomElementCallbacks, RaisesException=Setter] attribute DOMS tring contentEditable; 45 [CEReactions, CustomElementCallbacks, RaisesException=Setter] attribute DOMS tring contentEditable;
(...skipping 12 matching lines...) Expand all
57 // https://dev.w3.org/csswg/cssom/#the-elementcssinlinestyle-interface 58 // https://dev.w3.org/csswg/cssom/#the-elementcssinlinestyle-interface
58 [SameObject, PerWorldBindings, PutForwards=cssText] readonly attribute CSSSt yleDeclaration style; 59 [SameObject, PerWorldBindings, PutForwards=cssText] readonly attribute CSSSt yleDeclaration style;
59 60
60 // Non-standard APIs 61 // Non-standard APIs
61 [TreatNullAs=NullString, CEReactions, CustomElementCallbacks, RaisesExceptio n=Setter, MeasureAs=HTMLElementInnerText] attribute DOMString innerText; 62 [TreatNullAs=NullString, CEReactions, CustomElementCallbacks, RaisesExceptio n=Setter, MeasureAs=HTMLElementInnerText] attribute DOMString innerText;
62 [TreatNullAs=NullString, CEReactions, CustomElementCallbacks, RaisesExceptio n=Setter, MeasureAs=HTMLElementOuterText] attribute DOMString outerText; 63 [TreatNullAs=NullString, CEReactions, CustomElementCallbacks, RaisesExceptio n=Setter, MeasureAs=HTMLElementOuterText] attribute DOMString outerText;
63 }; 64 };
64 65
65 HTMLElement implements GlobalEventHandlers; 66 HTMLElement implements GlobalEventHandlers;
66 HTMLElement implements NoncedElement; 67 HTMLElement implements NoncedElement;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698