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

Side by Side Diff: tests/html/xmldocument_2_test.dart

Issue 11365203: Unmerging HTMLDocument from Document. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Try again? Created 8 years, 1 month 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
« no previous file with comments | « sdk/lib/html/templates/html/impl/impl_HtmlDocument.darttemplate ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 library XmlDocument2Test;
2 import '../../pkg/unittest/lib/unittest.dart';
3 import '../../pkg/unittest/lib/html_config.dart';
4 import 'dart:html';
5
6 main() {
7 useHtmlConfiguration();
8 test('Document.query', () {
9 Document doc = new DOMParser().parseFromString(
10 '''<ResultSet>
11 <Row>A</Row>
12 <Row>B</Row>
13 <Row>C</Row>
14 </ResultSet>''','text/xml');
15
16 var rs = doc.query('ResultSet');
17 expect(rs, isNotNull);
18 });
19 }
OLDNEW
« no previous file with comments | « sdk/lib/html/templates/html/impl/impl_HtmlDocument.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698