summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html')
-rw-r--r--testing/web-platform/tests/mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/web-platform/tests/mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html b/testing/web-platform/tests/mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html
index ea2d07309c..d9ad3dda39 100644
--- a/testing/web-platform/tests/mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html
+++ b/testing/web-platform/tests/mixed-content/tentative/autoupgrades/video-upgrade.https.sub.html
@@ -13,10 +13,10 @@
function assert_video_loads(test) {
// Since autoupgrades don't upgrade custom ports, we use the https port with an HTTP scheme. A successful autoupgrade will result in the right URL loading (and no autoupgrade will result in failure).
- var url = new URL("http://{{host}}:{{ports[https][0]}}/mixed-content/tentative/resources/test.ogv")
+ var url = new URL("http://{{host}}:{{ports[https][0]}}/mixed-content/tentative/resources/test.webm")
var i = document.createElement('video');
i.oncanplaythrough = test.step_func_done(_ => {
- assert_equals(Math.floor(i.duration), 300, "Length.");
+ assert_equals(Math.floor(i.duration), 1, "Length.");
});
i.onerror = test.unreached_func("Video should load successfully from " + url);
i.src = url;
@@ -28,10 +28,10 @@
function assert_other_host_video_loads(test) {
// Since autoupgrades don't upgrade custom ports, we use the https port with an HTTP scheme. A successful autoupgrade will result in the right URL loading (and no autoupgrade will result in failure).
var otherHost = get_host_info().HTTP_NOTSAMESITE_ORIGIN.slice(0,-4); // cut of http port
- var url = new URL( otherHost + "{{ports[https][0]}}/mixed-content/tentative/resources/test.ogv")
+ var url = new URL( otherHost + "{{ports[https][0]}}/mixed-content/tentative/resources/test.webm")
var i = document.createElement('video');
i.oncanplaythrough = test.step_func_done(_ => {
- assert_equals(Math.floor(i.duration), 300, "Length. Other host");
+ assert_equals(Math.floor(i.duration), 1, "Length. Other host");
});
i.onerror = test.unreached_func("Video of other host should load successfully from " + url);
i.src = url;