Chore: Remove unused variable in transition-zero-duration-with-delay.html (#37179)

Fix the mistake I made in #35978
Testing: No behaviour change.

Signed-off-by: Euclid Ye <yezhizhenjiakang@gmail.com>
This commit is contained in:
Euclid Ye 2025-05-29 17:56:30 +08:00 committed by GitHub
parent 54f23a8e3d
commit 3bb7c71eb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View file

@ -611439,7 +611439,7 @@
]
],
"transition-zero-duration-with-delay.html": [
"0b6b9c37a9b2a1c225889c1f362beb9d559c25d7",
"308d8f3784feb674566b64e0b52ae78d43ac55e2",
[
null,
{}

View file

@ -30,7 +30,6 @@ promise_test(async t => {
div.style.transition = 'width 0s linear 0.3s';
// Set width back to 0
const startTime = performance.now();
div.style.width = '0px';
// Immediate check - should NOT have changed yet
const computedStart = getComputedStyle(div).width;