| OLD | NEW |
| 1 #library('html'); | 1 #library('html'); |
| 2 | 2 |
| 3 #import('dart:dom', prefix:'dom'); | 3 #import('dart:dom', prefix:'dom'); |
| 4 #import('dart:htmlimpl'); | 4 #import('dart:htmlimpl'); |
| 5 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 5 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 6 // for details. All rights reserved. Use of this source code is governed by a | 6 // for details. All rights reserved. Use of this source code is governed by a |
| 7 // BSD-style license that can be found in the LICENSE file. | 7 // BSD-style license that can be found in the LICENSE file. |
| 8 | 8 |
| 9 // DO NOT EDIT | 9 // DO NOT EDIT |
| 10 // Auto-generated Dart HTML library. | 10 // Auto-generated Dart HTML library. |
| (...skipping 12628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12639 String get width(); | 12639 String get width(); |
| 12640 | 12640 |
| 12641 void set width(String value); | 12641 void set width(String value); |
| 12642 | 12642 |
| 12643 bool get willValidate(); | 12643 bool get willValidate(); |
| 12644 | 12644 |
| 12645 bool checkValidity(); | 12645 bool checkValidity(); |
| 12646 | 12646 |
| 12647 void setCustomValidity(String error); | 12647 void setCustomValidity(String error); |
| 12648 | 12648 |
| 12649 SVGDocument get svgDocument(); | 12649 // Don't support getSVGDocument because the content document won't have all |
| 12650 // the necessary patches to the prototype hierarchy under Frog. |
| 12650 } | 12651 } |
| 12651 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 12652 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 12652 // for details. All rights reserved. Use of this source code is governed by a | 12653 // for details. All rights reserved. Use of this source code is governed by a |
| 12653 // BSD-style license that can be found in the LICENSE file. | 12654 // BSD-style license that can be found in the LICENSE file. |
| 12654 | 12655 |
| 12655 interface OverflowEvent extends Event factory OverflowEventWrappingImplementatio
n { | 12656 interface OverflowEvent extends Event factory OverflowEventWrappingImplementatio
n { |
| 12656 | 12657 |
| 12657 OverflowEvent(int orient, bool horizontalOverflow, bool verticalOverflow); | 12658 OverflowEvent(int orient, bool horizontalOverflow, bool verticalOverflow); |
| 12658 | 12659 |
| 12659 static final int BOTH = 2; | 12660 static final int BOTH = 2; |
| (...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13484 EventListenerList get abort(); | 13485 EventListenerList get abort(); |
| 13485 EventListenerList get error(); | 13486 EventListenerList get error(); |
| 13486 EventListenerList get load(); | 13487 EventListenerList get load(); |
| 13487 EventListenerList get loadStart(); | 13488 EventListenerList get loadStart(); |
| 13488 EventListenerList get progress(); | 13489 EventListenerList get progress(); |
| 13489 } | 13490 } |
| 13490 | 13491 |
| 13491 interface XMLHttpRequestUpload extends EventTarget { | 13492 interface XMLHttpRequestUpload extends EventTarget { |
| 13492 XMLHttpRequestUploadEvents get on(); | 13493 XMLHttpRequestUploadEvents get on(); |
| 13493 } | 13494 } |
| OLD | NEW |