blob: d61ab0c47cfe2ee78a76ec84fb86fb76c4adec43 [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.
*/
/**
* @description element.getElementsByClassName(): simple
*/
import "dart:html";
import "../../../testcommon.dart";
main() {
document.documentElement.className = "a";
document.body.className = "a";
shouldBeList(document.body.getElementsByClassName("a"), []);
}