blob: 861efe38a6ce5aabf64c7d89bf66cdff6def6ac3 [file] [log] [blame]
// Copyright (c) 2014, 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.
// @dart = 2.9
/// @assertion final String outerHtml
/// Gets the markup of the element including its content.
/// @description Checks expected outerHtml settings
import "dart:html";
import "../../../Utils/expect.dart";
main() {
var x = new Element.html('<div></div>');
Expect.equals('<div></div>', x.outerHtml);
x = document.body;
var h = '<!--comment--><button>foo</button>';
x.innerHtml = h;
Expect.equals('<body>$h</body>', x.outerHtml);
}