Skip to content

Commit 73916b3

Browse files
chore: update WPT (#4126)
Co-authored-by: Uzlopak <[email protected]>
1 parent 1866f1f commit 73916b3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/fixtures/wpt/resources/testdriver.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,7 @@
14371437
* @param {String} sample - A `virtual pressure state
14381438
* <https://w3c.github.io/compute-pressure/#dom-pressurestate>`_
14391439
* such as "critical".
1440-
* @param {number} estimate - Optional, A `virtual own contribution estimate`
1440+
* @param {number} own_contribution_estimate - Optional, A `virtual own contribution estimate`
14411441
* <https://w3c.github.io/compute-pressure/?experimental=1#the-owncontributionestimate-attribute>`_
14421442
* @param {WindowProxy} [context=null] - Browsing context in which to
14431443
* run the call, or null for the
@@ -1449,8 +1449,8 @@
14491449
* virtual pressure source of the given type does not
14501450
* exist).
14511451
*/
1452-
update_virtual_pressure_source: function(source_type, sample, estimate, context=null) {
1453-
return window.test_driver_internal.update_virtual_pressure_source(source_type, sample, estimate, context);
1452+
update_virtual_pressure_source: function(source_type, sample, own_contribution_estimate, context=null) {
1453+
return window.test_driver_internal.update_virtual_pressure_source(source_type, sample, own_contribution_estimate, context);
14541454
},
14551455

14561456
/**
@@ -1748,7 +1748,7 @@
17481748
throw new Error("create_virtual_pressure_source() is not implemented by testdriver-vendor.js");
17491749
},
17501750

1751-
async update_virtual_pressure_source(source_type, sample, estimate, context=null) {
1751+
async update_virtual_pressure_source(source_type, sample, own_contribution_estimate, context=null) {
17521752
throw new Error("update_virtual_pressure_source() is not implemented by testdriver-vendor.js");
17531753
},
17541754

0 commit comments

Comments
 (0)