mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Remove createElement_script.html.
This test is coevered by old-tests/submission/Opera/script_scheduling/016.html in web-platform-tests.
This commit is contained in:
parent
b6fc83cf2b
commit
f69a315123
2 changed files with 0 additions and 29 deletions
|
@ -83,12 +83,6 @@
|
|||
"url": "/_mozilla/mozilla/collections.html"
|
||||
}
|
||||
],
|
||||
"mozilla/createElement_script.html": [
|
||||
{
|
||||
"path": "mozilla/createElement_script.html",
|
||||
"url": "/_mozilla/mozilla/createElement_script.html"
|
||||
}
|
||||
],
|
||||
"mozilla/create_element.html": [
|
||||
{
|
||||
"path": "mozilla/create_element.html",
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
var output;
|
||||
test(function() {
|
||||
output = "start";
|
||||
|
||||
var script = document.createElement("script");
|
||||
script.setAttribute('type','text/javascript');
|
||||
script.textContent = "output += ' middle ';";
|
||||
document.body.appendChild(script);
|
||||
|
||||
output += "end";
|
||||
assert_equals(output, "start middle end");
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue