| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 class _EventFactoryProvider { | |
| 6 factory Event(String type, [bool canBubble = true, | |
| 7 bool cancelable = true]) => null; | |
| 8 } | |
| 9 | |
| 10 class _MouseEventFactoryProvider { | |
| 11 factory MouseEvent(String type, Window view, int detail, | |
| 12 int screenX, int screenY, int clientX, int clientY, int button, | |
| 13 [bool canBubble = true, bool cancelable = true, bool ctrlKey = false, | |
| 14 bool altKey = false, bool shiftKey = false, bool metaKey = false, | |
| 15 EventTarget relatedTarget = null]) => null; | |
| 16 } | |
| 17 | |
| 18 class _CSSStyleDeclarationFactoryProvider { | |
| 19 factory CSSStyleDeclaration.css(String css) => null; | |
| 20 factory CSSStyleDeclaration() => null; | |
| 21 } | |
| 22 | |
| 23 class _DocumentFragmentFactoryProvider { | |
| 24 /** @domName Document.createDocumentFragment */ | |
| 25 factory DocumentFragment() => document.createDocumentFragment(); | |
| 26 factory DocumentFragment.html(String html) => null; | |
| 27 factory DocumentFragment.xml(String xml) => null; | |
| 28 factory DocumentFragment.svg(String svg) => null; | |
| 29 } | |
| 30 | |
| 31 class _SVGElementFactoryProvider { | |
| 32 factory SVGElement.tag(String tag) => null; | |
| 33 factory SVGElement.svg(String svg) => null; | |
| 34 } | |
| 35 | |
| 36 class _SVGSVGElementFactoryProvider { | |
| 37 factory SVGSVGElement() => null; | |
| 38 } | |
| OLD | NEW |