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

Unified Diff: tests/html/mutationobserver_test.dart

Issue 12663017: Reapply the expanded names with the correct form of requestFileSystem on the (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/html/fileapi_test.dart ('k') | tests/html/notifications_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/mutationobserver_test.dart
diff --git a/tests/html/mutationobserver_test.dart b/tests/html/mutationobserver_test.dart
index 1886a57a28bb5bbfb9292a67705ec828d1b857ca..9710310fc239c4861e320806315a29d657c7eb01 100644
--- a/tests/html/mutationobserver_test.dart
+++ b/tests/html/mutationobserver_test.dart
@@ -58,20 +58,6 @@ main() {
}, expectation);
});
- test('direct-parallel options-map', () {
- expect(() {
- var container = new DivElement();
- var div1 = new DivElement();
- var div2 = new DivElement();
- var mutationObserver = new MutationObserver(
- mutationCallback(2, orderedEquals([div1, div2])));
- mutationObserver.observe(container, options: {'childList': true});
-
- container.nodes.add(div1);
- container.nodes.add(div2);
- }, expectation);
- });
-
test('direct-parallel options-named', () {
expect(() {
var container = new DivElement();
@@ -100,22 +86,6 @@ main() {
}, expectation);
});
-
- test('subtree options-map', () {
- expect(() {
- var container = new DivElement();
- var div1 = new DivElement();
- var div2 = new DivElement();
- var mutationObserver = new MutationObserver(
- mutationCallback(2, orderedEquals([div1, div2])));
- mutationObserver.observe(container,
- options: {'childList': true, 'subtree': true});
-
- container.nodes.add(div1);
- div1.nodes.add(div2);
- }, expectation);
- });
-
test('subtree options-named', () {
expect(() {
var container = new DivElement();
« no previous file with comments | « tests/html/fileapi_test.dart ('k') | tests/html/notifications_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698