Revision ac4966fa4dcda8e22ade19e03ed6690de7b9cece authored by Henrik Boström on 28 March 2018, 15:48:04 UTC, committed by Chromium WPT Sync on 28 March 2018, 15:48:04 UTC
This exposes RTCRtpSender.getStats() in JavaScript (behind flag) which
implements the stats selection algorithm[1] for senders.

[1] https://w3c.github.io/webrtc-pc/#dfn-stats-selection-algorithm

Bug: 680172
Change-Id: I8117c87f475d1c78fa3301fc2d821f0c3a21281f
Reviewed-on: https://chromium-review.googlesource.com/975306
Commit-Queue: Henrik Boström <hbos@chromium.org>
Reviewed-by: Philip Jägenstedt <foolip@chromium.org>
Reviewed-by: Harald Alvestrand <hta@chromium.org>
Reviewed-by: Taylor Brandstetter <deadbeef@chromium.org>
Cr-Commit-Position: refs/heads/master@{#546493}
1 parent f9c1a50
Raw File
common.js
function createPassFail(condition, test, cleanup, cleanupParam) {
    var div = document.querySelector("#passfail")
    var para = document.createElement("p")
    var pass = document.createElement("button")
    var fail = document.createElement("button")
    var style = "font-family: monospace"
    para.innerHTML = condition
        + ', press the PASS button;'
        + ' otherwise press the FAIL button.',
    pass.innerHTML = "PASS"
    fail.innerHTML = "FAIL"
    pass.setAttribute("style", style)
    fail.setAttribute("style", style)
    pass.addEventListener("click", function () {
        clearPassFail()
        cleanup(cleanupParam)
        test.done()
    }, false)
    fail.addEventListener("click", function () {
        clearPassFail()
        cleanup(cleanupParam)
        test.force_timeout()
        test.set_status(test.FAIL)
        test.done()
    }, false)
    document.body.appendChild(div)
    div.appendChild(para)
    div.appendChild(pass)
    div.appendChild(fail)
}
function clearPassFail() {
    document.querySelector("#passfail").innerHTML = ""
}
function closeNotifications(notifications) {
    for (var i=0; i < notifications.length; i++) {
        notifications[i].close()
    }
}
function hasNotificationPermission() {
    Notification.requestPermission()
    if (Notification.permission != "granted") {
        alert("TEST NOT RUN. Change your browser settings so that"
            + " notifications for this origin are allowed, and then re-run"
            + " this test.")
        return false
    }
    return true
}
back to top