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:
Ms2ger 2015-04-23 14:42:56 +02:00
parent b6fc83cf2b
commit f69a315123
2 changed files with 0 additions and 29 deletions

View file

@ -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",

View file

@ -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>