mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Use t.step_func
and expected path checking
This commit is contained in:
parent
7270333487
commit
10442ae894
2 changed files with 6 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
|||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script>
|
||||
async_test(function(t) {
|
||||
window.addEventListener("load", function() {
|
||||
window.addEventListener("load", t.step_func(function() {
|
||||
var frame = document.createElement("iframe");
|
||||
frame.name = "frame";
|
||||
document.documentElement.appendChild(frame);
|
||||
|
@ -17,13 +17,13 @@ async_test(function(t) {
|
|||
form.appendChild(input);
|
||||
document.documentElement.appendChild(form);
|
||||
form.submit();
|
||||
frame.addEventListener("load", function() {
|
||||
if (frame.contentWindow.location.href != "about:blank") {
|
||||
frame.addEventListener("load", t.step_func(function() {
|
||||
if (frame.contentWindow.location.href.includes("form-target-iframe-helper.py")) {
|
||||
assert_equals(frame.contentWindow.document.body.textContent, "OK");
|
||||
t.done();
|
||||
}
|
||||
});
|
||||
});
|
||||
}));
|
||||
}));
|
||||
}, "Form targetted at iframe");
|
||||
</script>
|
||||
<body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue