Changeset 123993 in webkit


Ignore:
Timestamp:
Jul 29, 2012 9:19:10 PM (12 years ago)
Author:
tkent@chromium.org
Message:

Fix opacity issue of fast/forms/date/calendar-picker-appearance.html
https://bugs.webkit.org/show_bug.cgi?id=92605

Reviewed by Hajime Morita.

We need to wait for pixel dumping until CSS transition completion for
the 'main' element, which has transition from opacity:0 to opacity:1.

  • fast/forms/date/calendar-picker-appearance.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r123990 r123993  
     12012-07-29  Kent Tamura  <tkent@chromium.org>
     2
     3        Fix opacity issue of fast/forms/date/calendar-picker-appearance.html
     4        https://bugs.webkit.org/show_bug.cgi?id=92605
     5
     6        Reviewed by Hajime Morita.
     7
     8        We need to wait for pixel dumping until CSS transition completion for
     9        the 'main' element, which has transition from opacity:0 to opacity:1.
     10
     11        * fast/forms/date/calendar-picker-appearance.html:
     12
    1132012-07-29  Dan Bernstein  <mitz@apple.com>
    214
  • trunk/LayoutTests/fast/forms/date/calendar-picker-appearance.html

    r122558 r123993  
    1717sendKey(document.getElementById('date'), 'Down');
    1818var pickerWindow = document.getElementById('mock-page-popup').contentWindow;
    19 pickerWindow.onresize = function() {
     19pickerWindow.document.getElementById('main').addEventListener('webkitTransitionEnd', function() {
    2020    console.log(pickerWindow.pagePopupController);
    2121    testRunner.notifyDone();
    22 }
     22}, false);
    2323</script>
    2424</body>
Note: See TracChangeset for help on using the changeset viewer.