Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 interface DocumentFragment extends Node factory DocumentFragmentWrappingImplemen tation { | 5 interface DocumentFragment extends Node, Element factory DocumentFragmentWrappin gImplementation { |
|
Jacob
2011/10/19 23:36:03
Element extends Node so no need to mark this as ex
nweiz
2011/10/19 23:42:09
Done.
| |
| 6 | 6 |
| 7 DocumentFragment(); | 7 DocumentFragment(); |
| 8 | 8 |
| 9 DocumentFragment.html(String html); | |
| 10 | |
| 9 Element query(String selectors); | 11 Element query(String selectors); |
|
Jacob
2011/10/19 23:36:03
remove these two methods. They're already defined
nweiz
2011/10/19 23:42:09
Done.
| |
| 10 | 12 |
| 11 ElementList queryAll(String selectors); | 13 ElementList queryAll(String selectors); |
| 12 } | 14 } |
| OLD | NEW |