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

Side by Side Diff: sky/engine/core/dom/Element.idl

Issue 878303002: Remove more scrolling code from Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « sky/engine/core/dom/Element.cpp ('k') | sky/engine/core/dom/ElementRareData.h » ('j') | 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, 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 29 matching lines...) Expand all
40 readonly attribute long offsetLeft; 40 readonly attribute long offsetLeft;
41 readonly attribute long offsetTop; 41 readonly attribute long offsetTop;
42 readonly attribute long offsetWidth; 42 readonly attribute long offsetWidth;
43 readonly attribute long offsetHeight; 43 readonly attribute long offsetHeight;
44 readonly attribute Element offsetParent; 44 readonly attribute Element offsetParent;
45 readonly attribute long clientLeft; 45 readonly attribute long clientLeft;
46 readonly attribute long clientTop; 46 readonly attribute long clientTop;
47 readonly attribute long clientWidth; 47 readonly attribute long clientWidth;
48 readonly attribute long clientHeight; 48 readonly attribute long clientHeight;
49 49
50 // FIXME: should be:
51 // attribute (Dictionary or double) scrollLeft;
52 // attribute (Dictionary or double) scrollTop;
53 // http://crbug.com/240176
54 [Custom=Setter] attribute long scrollLeft;
55 [Custom=Setter] attribute long scrollTop;
56 readonly attribute long scrollWidth;
57 readonly attribute long scrollHeight;
58
59 void focus(); 50 void focus();
60 void blur(); 51 void blur();
61 52
62 [PerWorldBindings] readonly attribute DOMTokenList classList; 53 [PerWorldBindings] readonly attribute DOMTokenList classList;
63 54
64 [RaisesException] ShadowRoot ensureShadowRoot(); 55 [RaisesException] ShadowRoot ensureShadowRoot();
65 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; 56 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot;
66 NodeList getDestinationInsertionPoints(); 57 NodeList getDestinationInsertionPoints();
67 58
68 // CSSOM View Module API 59 // CSSOM View Module API
69 ClientRectList getClientRects(); 60 ClientRectList getClientRects();
70 ClientRect getBoundingClientRect(); 61 ClientRect getBoundingClientRect();
71 62
72 [Reflect] attribute DOMString lang; 63 [Reflect] attribute DOMString lang;
73 attribute DOMString dir; 64 attribute DOMString dir;
74 65
75 [CustomElementCallbacks] attribute long tabIndex; 66 [CustomElementCallbacks] attribute long tabIndex;
76 67
77 [CustomElementCallbacks, RaisesException=Setter] attribute DOMString content Editable; 68 [CustomElementCallbacks, RaisesException=Setter] attribute DOMString content Editable;
78 readonly attribute boolean isContentEditable; 69 readonly attribute boolean isContentEditable;
79 70
80 attribute boolean spellcheck; 71 attribute boolean spellcheck;
81 }; 72 };
82 73
83 Element implements ParentNode; 74 Element implements ParentNode;
84 Element implements ChildNode; 75 Element implements ChildNode;
OLDNEW
« no previous file with comments | « sky/engine/core/dom/Element.cpp ('k') | sky/engine/core/dom/ElementRareData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698