| 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;
|
| + };
|
| }
|
|
|