blob: bab453335603e27f71974285860979ef99228ef8 [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 Map<String, String> attributes
/// Any modifications to the attribute map will automatically be applied to
/// this element.
/// @description Checks that modification of attributes is reflected in the
/// element.
import "dart:html";
import "../../../Utils/expect.dart";
main() {
var x = new Element.html('<div id="id"></div>');
x.attributes['id'] = 'foo';
x.attributes['class'] = 'bar';
Expect.equals('foo', x.id);
Expect.equals('bar', x.className);
}