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

Unified Diff: lib/dom/idl/dart/dart.idl

Issue 10704100: Do not split attributes on getters and setters in databasebuilder. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: . Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/dom/scripts/databasebuilder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/idl/dart/dart.idl
diff --git a/lib/dom/idl/dart/dart.idl b/lib/dom/idl/dart/dart.idl
index e022cd3576b7fbb5721fadf57e40dd1930a40476..2cc6d1c2b25e9b464a31bf818f96b0890f5cf49f 100644
--- a/lib/dom/idl/dart/dart.idl
+++ b/lib/dom/idl/dart/dart.idl
@@ -36,11 +36,11 @@ module core {
module dom {
// Force ElementTraversal. WebKit defines these directly.
interface ElementTraversal {
- getter attribute unsigned long childElementCount;
- getter attribute Element firstElementChild;
- getter attribute Element lastElementChild;
- getter attribute Element nextElementSibling;
- getter attribute Element previousElementSibling;
+ readonly attribute unsigned long childElementCount;
+ readonly attribute Element firstElementChild;
+ readonly attribute Element lastElementChild;
+ readonly attribute Element nextElementSibling;
+ readonly attribute Element previousElementSibling;
};
Element implements ElementTraversal;
@@ -273,7 +273,7 @@ module html {
};
module svg {
- interface SVGNumber {
- [StrictTypeChecking, Custom] attribute double value;
- };
+ interface SVGNumber {
+ [StrictTypeChecking, Custom] attribute float value;
+ };
}
« no previous file with comments | « no previous file | lib/dom/scripts/databasebuilder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698