Changeset 87471 in webkit


Ignore:
Timestamp:
May 26, 2011 10:31:57 PM (13 years ago)
Author:
rniwa@webkit.org
Message:

2011-05-26 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Hajime Morita.

editing/pasteboard/5483567.html should be renamed and converted to a dump-as-markup test.
https://bugs.webkit.org/show_bug.cgi?id=61599

Renamed 5483567.html to pasting-word-in-div-extra-line.html and converted it to
a dump-as-markup test.

  • editing/pasteboard/5483567.html: Removed.
  • editing/pasteboard/pasting-word-in-div-extra-line-expected.txt: Added.
  • editing/pasteboard/pasting-word-in-div-extra-line.html: Copied from LayoutTests/editing/pasteboard/5483567.html.
  • platform/chromium-linux/editing/pasteboard/5483567-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/5483567-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/5483567-expected.txt: Removed.
  • platform/gtk/editing/pasteboard/5483567-expected.txt: Removed.
  • platform/mac-leopard/editing/pasteboard/5483567-expected.png: Removed.
  • platform/mac/editing/pasteboard/5483567-expected.png: Removed.
  • platform/mac/editing/pasteboard/5483567-expected.txt: Removed.
  • platform/qt/editing/pasteboard/5483567-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
1 added
8 deleted
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87470 r87471  
     12011-05-26  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Reviewed by Hajime Morita.
     4
     5        editing/pasteboard/5483567.html should be renamed and converted to a dump-as-markup test.
     6        https://bugs.webkit.org/show_bug.cgi?id=61599
     7
     8        Renamed 5483567.html to pasting-word-in-div-extra-line.html and converted it to
     9        a dump-as-markup test.
     10
     11        * editing/pasteboard/5483567.html: Removed.
     12        * editing/pasteboard/pasting-word-in-div-extra-line-expected.txt: Added.
     13        * editing/pasteboard/pasting-word-in-div-extra-line.html: Copied from
     14        LayoutTests/editing/pasteboard/5483567.html.
     15        * platform/chromium-linux/editing/pasteboard/5483567-expected.png: Removed.
     16        * platform/chromium-win/editing/pasteboard/5483567-expected.png: Removed.
     17        * platform/chromium-win/editing/pasteboard/5483567-expected.txt: Removed.
     18        * platform/gtk/editing/pasteboard/5483567-expected.txt: Removed.
     19        * platform/mac-leopard/editing/pasteboard/5483567-expected.png: Removed.
     20        * platform/mac/editing/pasteboard/5483567-expected.png: Removed.
     21        * platform/mac/editing/pasteboard/5483567-expected.txt: Removed.
     22        * platform/qt/editing/pasteboard/5483567-expected.txt: Removed.
     23
    1242011-05-26  Ryosuke Niwa  <rniwa@webkit.org>
    225
  • trunk/LayoutTests/editing/pasteboard/pasting-word-in-div-extra-line.html

    r87470 r87471  
    11<div id="div" contenteditable="true">xx</div>
     2<script src="../../resources/dump-as-markup.js"></script>
     3<script>
    24
    3 <script>
     5Markup.description('This test ensures pasting words copied from TextEdit in Mail does not add extra newline. See rdar://problem/5483567.');
     6
    47text = document.getElementById("div").firstChild;
    58window.getSelection().setPosition(text, 1);
    69document.execCommand("InsertHTML", false, " <div>foo</div> ");
     10
     11Markup.dump('div')
     12
    713</script>
Note: See TracChangeset for help on using the changeset viewer.