mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Add test for get action URL planned navigation
This commit is contained in:
parent
740965e39f
commit
084e86daf2
3 changed files with 50 additions and 0 deletions
|
@ -34534,6 +34534,12 @@
|
|||
"url": "/dom/ranges/Range-stringifier.html"
|
||||
}
|
||||
],
|
||||
"html/semantics/forms/form-submission-0/getactionurl.html": [
|
||||
{
|
||||
"path": "html/semantics/forms/form-submission-0/getactionurl.html",
|
||||
"url": "/html/semantics/forms/form-submission-0/getactionurl.html"
|
||||
}
|
||||
],
|
||||
"html/webappapis/scripting/events/event-handler-processing-algorithm.html": [
|
||||
{
|
||||
"path": "html/webappapis/scripting/events/event-handler-processing-algorithm.html",
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
[getactionurl.html]
|
||||
type: testharness
|
||||
[Navigating to URL with a data scheme]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<iframe id=testframe src="/common/blank.html"></iframe>
|
||||
<script>
|
||||
var tests = [
|
||||
{
|
||||
name: "Navigating to URL with a data scheme",
|
||||
action: "data:,hello%20world",
|
||||
output: "hello world"
|
||||
}
|
||||
];
|
||||
tests.forEach(function(test_obj) {
|
||||
test_obj.test = async_test(test_obj.name);
|
||||
});
|
||||
|
||||
function run_test() {
|
||||
if (tests.length == 0) {
|
||||
return;
|
||||
}
|
||||
var test_obj = tests.pop();
|
||||
var t = test_obj.test;
|
||||
var testframe = document.getElementById("testframe");
|
||||
var testdocument = testframe.contentWindow.document;
|
||||
testdocument.body.innerHTML =
|
||||
"<form id=testform method=get action=\"" + test_obj.action +"\"></form>";
|
||||
testframe.onload = function() {
|
||||
t.step(function() {
|
||||
var body_text = testframe.contentWindow.document.textContent;
|
||||
assert_equals(body_text, test_obj.output);
|
||||
});
|
||||
t.done();
|
||||
run_test();
|
||||
};
|
||||
testdocument.getElementById("testform").submit();
|
||||
};
|
||||
document.getElementById("testframe").onload = run_test;
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue