mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Move content tests to src/test/content for consistency
This commit is contained in:
parent
2238d81b53
commit
6f76244377
60 changed files with 2 additions and 2 deletions
18
src/test/content/test_script_src_attribute.html
Normal file
18
src/test/content/test_script_src_attribute.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue