Changeset 51834 in webkit


Ignore:
Timestamp:
Dec 7, 2009 9:48:40 PM (14 years ago)
Author:
hamaji@chromium.org
Message:

2009-12-07 Shinichiro Hamaji <hamaji@chromium.org>

Reviewed by Darin Adler.

editing/selection/last-empty-inline is failing in Windows
https://bugs.webkit.org/show_bug.cgi?id=31985

  • editing/selection/last-empty-inline-expected.txt:
  • editing/selection/last-empty-inline.html:
  • platform/qt/Skipped:
  • platform/win/Skipped:
Location:
trunk/LayoutTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r51830 r51834  
     12009-12-07  Shinichiro Hamaji  <hamaji@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        editing/selection/last-empty-inline is failing in Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=31985
     7
     8        * editing/selection/last-empty-inline-expected.txt:
     9        * editing/selection/last-empty-inline.html:
     10        * platform/qt/Skipped:
     11        * platform/win/Skipped:
     12
    1132009-12-07  Fumitoshi Ukai  <ukai@chromium.org>
    214
  • trunk/LayoutTests/editing/selection/last-empty-inline-expected.txt

    r51429 r51834  
    1 To test this manually, press mouse button below the comma between "Hello" and "world!" and drag the mouse to the comma. It's OK if "world!" is selected.
     1To test this manually, press mouse button below the '!' and drag the mouse to the comma between "Hello" and "world!". It's OK if "world!" is selected.
    22PASS
  • trunk/LayoutTests/editing/selection/last-empty-inline.html

    r51429 r51834  
    11<div>
    2 To test this manually, press mouse button below the comma between "Hello" and "world!" and drag the mouse to the comma. It's OK if "world!" is selected.
     2To test this manually, press mouse button below the '!' and drag the mouse to the comma between "Hello" and "world!". It's OK if "world!" is selected.
    33</div>
    44
    55<div id="result" style="width: 200px;">
    6 <span>Hello,</span><span id="world">world!</span><span style="padding-left: 200px; padding-bottom: 200px; background-color: blue; height: 200px;"></span>
     6<span>Hello,</span><span id="world">world!</span><br><span style="padding-left: 200px; padding-bottom: 200px; background-color: blue; height: 200px;"></span>
    77</div>
    88
     
    1212
    1313    var world = document.getElementById("world");
    14     var x = world.offsetLeft;
    15     var y = world.offsetTop;
     14    var endX = world.offsetLeft;
     15    var startX = endX + world.offsetWidth;
     16    var endY = world.offsetTop;
     17    var startY = endY + 50;
    1618
    17     eventSender.mouseMoveTo(x, y + 50);
     19    eventSender.mouseMoveTo(startX, startY);
    1820    eventSender.mouseDown();
    19     eventSender.mouseMoveTo(x, y + 50);
    20     eventSender.mouseMoveTo(x, y);
     21    eventSender.mouseMoveTo(startX, startY);
     22    eventSender.mouseMoveTo(endX, endY);
    2123    eventSender.mouseUp();
    2224
  • trunk/LayoutTests/platform/qt/Skipped

    r51828 r51834  
    323323editing/selection/fake-drag.html
    324324editing/selection/inline-closest-leaf-child.html
     325editing/selection/last-empty-inline.html
    325326editing/selection/mixed-editability-1.html
    326327editing/selection/paragraph-granularity.html
     
    51285129fast/css/namespaces/namespaces-empty.xml
    51295130
    5130 # Failure introduced by http://trac.webkit.org/changeset/51429
    5131 # hamaji will look into this.
    5132 editing/selection/last-empty-inline.html
    5133 
    51345131# Failing tests due to
    51355132# layoutTestController.notifyDone() bug
  • trunk/LayoutTests/platform/win/Skipped

    r51817 r51834  
    706706plugins/qt-qwidget-plugin.html
    707707
    708 # Failure introduced by http://trac.webkit.org/changeset/51429
    709 # hamaji will look into this.
    710 editing/selection/last-empty-inline.html
    711 
    712708# Some versions of CFNetwork override CGI scripts' Content-Type headers <rdar://problem/7434354>
    713709http/tests/globalhistory/history-delegate-basic-refresh-redirect.html
Note: See TracChangeset for help on using the changeset viewer.