blob: 1904d1b432f75e262e55e9c5907ed37c943f0df1 [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 String title
/// @description Checks expected title attribute values
import "dart:html";
import "../../../Utils/expect.dart";
import "../testcommon.dart";
main() {
Element x = new Element.html('<div title="one"><p title="two"></p></div>',
treeSanitizer: new NullTreeSanitizer());
Expect.equals("one", x.title);
Expect.equals("two", (x.firstChild as Element).title);
}