Changeset 260792 in webkit


Ignore:
Timestamp:
Apr 27, 2020 3:42:31 PM (4 years ago)
Author:
Simon Fraser
Message:

fast/events/wheel-event-outside-body.html sometimes fails
https://bugs.webkit.org/show_bug.cgi?id=211098

Reviewed by Tim Horton.

Remove the 100ms watchdog timer. We'll just let the test time out if it fails.

  • fast/events/wheel-event-outside-body.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r260780 r260792  
     12020-04-27  Simon Fraser  <simon.fraser@apple.com>
     2
     3        fast/events/wheel-event-outside-body.html sometimes fails
     4        https://bugs.webkit.org/show_bug.cgi?id=211098
     5
     6        Reviewed by Tim Horton.
     7
     8        Remove the 100ms watchdog timer. We'll just let the test time out if it fails.
     9
     10        * fast/events/wheel-event-outside-body.html:
     11
    1122020-04-27  Antoine Quint  <graouts@apple.com>
    213
  • trunk/LayoutTests/fast/events/wheel-event-outside-body.html

    r200247 r260792  
    3232            testRunner.waitUntilDone();
    3333        }
    34        
     34
    3535        function setResult(s)
    3636        {
     
    5252                    eventSender.mouseScrollBy(-1, -2);
    5353                }
    54                
    55                 // Watchdog timer in case of failure.
    56                 window.setTimeout(function() {
    57                     if (window.testRunner)
    58                         testRunner.notifyDone();
    59                 }, 100);
    6054            }, 0);
    6155        }
    62        
     56
    6357        window.addEventListener('load', runTest, false);
    6458    </script>
Note: See TracChangeset for help on using the changeset viewer.