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

Side by Side Diff: client/html/release/html.dart

Issue 8965006: Support SVGElement#elements, #innerHTML, and #outerHTML. Also add a .svg constructor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 | Annotate | Revision Log
OLDNEW
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 12733 matching lines...) Expand 10 before | Expand all | Expand 10 after
12744 12744
12745 interface SVGDocument extends Document { 12745 interface SVGDocument extends Document {
12746 } 12746 }
12747 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 12747 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
12748 // for details. All rights reserved. Use of this source code is governed by a 12748 // for details. All rights reserved. Use of this source code is governed by a
12749 // BSD-style license that can be found in the LICENSE file. 12749 // BSD-style license that can be found in the LICENSE file.
12750 12750
12751 interface SVGElement extends Element factory SVGElementWrappingImplementation { 12751 interface SVGElement extends Element factory SVGElementWrappingImplementation {
12752 12752
12753 SVGElement.tag(String tag); 12753 SVGElement.tag(String tag);
12754 SVGElement.svg(String svg);
12754 12755
12755 String get id(); 12756 String get id();
12756 12757
12757 void set id(String value); 12758 void set id(String value);
12758 12759
12759 SVGSVGElement get ownerSVGElement(); 12760 SVGSVGElement get ownerSVGElement();
12760 12761
12761 SVGElement get viewportElement(); 12762 SVGElement get viewportElement();
12762 12763
12763 String get xmlbase(); 12764 String get xmlbase();
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | client/html/release/htmlimpl.dart » ('j') | client/html/src/SVGElementWrappingImplementation.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698