mirror of
https://github.com/servo/servo.git
synced 2025-07-26 00:30:22 +01:00
18 lines
275 B
HTML
18 lines
275 B
HTML
<html>
|
|
<head id="foo">
|
|
<title></title>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<script>
|
|
let script = document.getElementById("test");
|
|
|
|
{
|
|
is(script.src, "/x.js");
|
|
}
|
|
|
|
finish();
|
|
</script>
|
|
<body>
|
|
<script src="/x.js" id="test"/>
|
|
</body>
|
|
</html>
|