dart-sdk/tests/lib/html/hidden_dom_2_test.dart
Srujan Gaddam 5b2482004b [dart:html] Migrate tests that need changes to NNBD
Remaining tests that don't belong to any real test suite, but
need some changes beyond just null asserts to be migrated.

Change-Id: I91c0cb02eb72ada572a10c567b5d8bac596b16a4
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/142445
Reviewed-by: Bob Nystrom <rnystrom@google.com>
2020-04-06 20:41:14 +00:00

38 lines
985 B
Dart

// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:html';
import 'package:expect/minitest.dart';
// Test that the dart:html API does not leak native jsdom methods:
// appendChild operation.
main() {
test('test1', () {
document.body!.children.add(new Element.html(r'''
<div id='div1'>
Hello World!
</div>'''));
Element? e = document.querySelector('#div1');
Element e2 = new Element.html(r"<div id='xx'>XX</div>");
expect(e, isNotNull);
expect(() {
confuse(e!).appendChild(e2);
}, throwsNoSuchMethodError);
});
}
class Decoy {
void appendChild(x) {
throw 'dead code';
}
}
confuse(x) => opaqueTrue() ? x : (opaqueTrue() ? new Object() : new Decoy());
/** Returns `true`, but in a way that confuses the compiler. */
opaqueTrue() => true; // Expand as needed.