mirror of
https://github.com/servo/servo.git
synced 2025-08-16 19:05:33 +01:00
Update web-platform-tests to revision ddfc95cf0493ae147a4f6a4d7be8eff1a0c23098
This commit is contained in:
parent
1f6a864ab5
commit
7e6290451f
832 changed files with 16026 additions and 2649 deletions
|
@ -0,0 +1,64 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script>
|
||||
const test_data = [
|
||||
{
|
||||
url : './link-upgrade/basic-link-no-upgrade.sub.html',
|
||||
done_message : 'basic-link-no-upgrade',
|
||||
},
|
||||
{
|
||||
url : './link-upgrade/basic-link-upgrade.sub.html',
|
||||
done_message : 'basic-link-upgrade',
|
||||
},
|
||||
{
|
||||
url : './link-upgrade/iframe-link-upgrade.sub.html',
|
||||
done_message : 'iframe-link-upgrade',
|
||||
},
|
||||
{
|
||||
url : './link-upgrade/iframe-top-navigation-no-upgrade-1.sub.html',
|
||||
done_message : 'iframe-top-navigation-no-upgrade-1',
|
||||
},
|
||||
{
|
||||
url : './link-upgrade/iframe-top-navigation-no-upgrade-2.sub.html',
|
||||
done_message : 'iframe-top-navigation-no-upgrade-2',
|
||||
},
|
||||
{
|
||||
url : './link-upgrade/iframe-top-navigation-upgrade-1.sub.html',
|
||||
done_message : 'iframe-top-navigation-upgrade-1',
|
||||
},
|
||||
{
|
||||
url : './link-upgrade/iframe-top-navigation-upgrade-2.sub.html',
|
||||
done_message : 'iframe-top-navigation-upgrade-2',
|
||||
},
|
||||
{
|
||||
url : './link-upgrade/iframe-top-navigation-upgrade-meta.sub.html',
|
||||
done_message : 'iframe-top-navigation-upgrade-meta',
|
||||
},
|
||||
];
|
||||
for(let i = 0; i<test_data.length; i+=1) {
|
||||
let data = test_data[i];
|
||||
let test = async_test(data.url);
|
||||
test.step(function() {
|
||||
let w = window.open(data.url, data.url);
|
||||
this.add_cleanup(() => w.close());
|
||||
assert_true(w != undefined, "Popup must not be blocked");
|
||||
|
||||
window.addEventListener("message", event => {
|
||||
if (event.data == data.done_message)
|
||||
test.done();
|
||||
});
|
||||
});
|
||||
|
||||
test.step_timeout(function(){test.force_timeout()}, 5000);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue