Changeset 169508 in webkit


Ignore:
Timestamp:
May 31, 2014 8:48:16 PM (10 years ago)
Author:
Darin Adler
Message:

Fix test failure from the previous check-in.

  • fast/dynamic/window-resize-scrollbars-test.html: Add resize handler so this test works

with asynchronous resizing.

  • platform/wk2/TestExpectations: Expect failure for the test above; it's showing scrollbars,

and it should not. Before, the test was not running correctly so it seemed to pass.

Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r169505 r169508  
     12014-05-31  Darin Adler  <darin@apple.com>
     2
     3        Fix test failure from the previous check-in.
     4
     5        * fast/dynamic/window-resize-scrollbars-test.html: Add resize handler so this test works
     6        with asynchronous resizing.
     7
     8        * platform/wk2/TestExpectations: Expect failure for the test above; it's showing scrollbars,
     9        and it should not. Before, the test was not running correctly so it seemed to pass.
     10
    1112014-05-31  Darin Adler  <darin@apple.com>
    212
  • trunk/LayoutTests/fast/dynamic/window-resize-scrollbars-test.html

    r44152 r169508  
    99        document.body.offsetTop;
    1010
    11         resizeTo(outerWidth - 24, outerHeight - 24);
     11        var newWidth = outerWidth - 24;
     12
     13        if (window.testRunner) {
     14            testRunner.waitUntilDone();
     15            addEventListener("resize", function() {
     16                if (outerWidth == newWidth)
     17                    testRunner.notifyDone();
     18            });
     19        }
     20
     21        resizeTo(newWidth, outerHeight - 24);
    1222    </script>
    1323</body>
  • trunk/LayoutTests/platform/wk2/TestExpectations

    r168908 r169508  
    440440# Unexpected output from scrolling. Might be EFL port specific issue.
    441441http/tests/navigation/relativeanchor-frames.html
     442
     443# Scrollbars appear, even though they should not
     444fast/dynamic/window-resize-scrollbars-test.html [ Failure ]
    442445
    443446### END OF (2) Classified failures without bug reports (yet)
Note: See TracChangeset for help on using the changeset viewer.