blob: 79dea8d9a6a206c7aa18abb5d2d31e09aa5bba97 [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 This tests that accessing the src attribute of a script element
* does not cause an assertion to fail.
*/
import "dart:html";
import "../../../../Utils/expect.dart";
import "../../../../Utils/async_utils.dart";
import "../../../testcommon.dart";
main() {
var s0 = new ScriptElement();
s0.src = "data:text/javascript,";
s0.id = "target";
document.head.append(s0);
asyncStart();
s0.onLoad.first.then((_) {
document.getElementById("target").src;
asyncEnd();
});
}