Changeset 88699 in webkit


Ignore:
Timestamp:
Jun 13, 2011 2:36:59 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-13 Annie Sullivan <sullivan@chromium.org>

Reviewed by Dimitri Glazkov.

Convert editing/execCommand/outdent-selection.html to dump-as-markup
https://bugs.webkit.org/show_bug.cgi?id=62582

Convert the test to dump as markup and clean up the HTML.

  • editing/execCommand/outdent-selection-expected.txt: Added.
  • editing/execCommand/outdent-selection.html:
  • platform/chromium-linux/editing/execCommand/outdent-selection-expected.png: Removed.
  • platform/chromium-mac-leopard/editing/execCommand/outdent-selection-expected.png: Removed.
  • platform/chromium-mac/editing/execCommand/outdent-selection-expected.png: Removed.
  • platform/chromium-win/editing/execCommand/outdent-selection-expected.png: Removed.
  • platform/chromium-win/editing/execCommand/outdent-selection-expected.txt: Removed.
  • platform/gtk/editing/execCommand/outdent-selection-expected.txt: Removed.
  • platform/mac-leopard/editing/execCommand/outdent-selection-expected.png: Removed.
  • platform/mac/editing/execCommand/outdent-selection-expected.png: Removed.
  • platform/mac/editing/execCommand/outdent-selection-expected.txt: Removed.
  • platform/qt/editing/execCommand/outdent-selection-expected.png: Removed.
  • platform/qt/editing/execCommand/outdent-selection-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
1 added
11 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r88698 r88699  
     12011-06-13  Annie Sullivan  <sullivan@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Convert editing/execCommand/outdent-selection.html to dump-as-markup
     6        https://bugs.webkit.org/show_bug.cgi?id=62582
     7
     8        Convert the test to dump as markup and clean up the HTML.
     9
     10        * editing/execCommand/outdent-selection-expected.txt: Added.
     11        * editing/execCommand/outdent-selection.html:
     12        * platform/chromium-linux/editing/execCommand/outdent-selection-expected.png: Removed.
     13        * platform/chromium-mac-leopard/editing/execCommand/outdent-selection-expected.png: Removed.
     14        * platform/chromium-mac/editing/execCommand/outdent-selection-expected.png: Removed.
     15        * platform/chromium-win/editing/execCommand/outdent-selection-expected.png: Removed.
     16        * platform/chromium-win/editing/execCommand/outdent-selection-expected.txt: Removed.
     17        * platform/gtk/editing/execCommand/outdent-selection-expected.txt: Removed.
     18        * platform/mac-leopard/editing/execCommand/outdent-selection-expected.png: Removed.
     19        * platform/mac/editing/execCommand/outdent-selection-expected.png: Removed.
     20        * platform/mac/editing/execCommand/outdent-selection-expected.txt: Removed.
     21        * platform/qt/editing/execCommand/outdent-selection-expected.png: Removed.
     22        * platform/qt/editing/execCommand/outdent-selection-expected.txt: Removed.
     23
    1242011-06-13  Adrienne Walker  <enne@google.com>
    225
  • trunk/LayoutTests/editing/execCommand/outdent-selection.html

    r20925 r88699  
    1 <script>
    2 if (window.layoutTestController)
    3      layoutTestController.dumpEditingCallbacks();
    4 </script>
    5 <div id="description">This test uses the execCommand to Outdent the text below. <b>This demonstrates a bug: the content in the blockquote that's not in a list is pulled out of position.</b></div>
    6 <br>
    7 <div contenteditable="true">
     1<!DOCTYPE html>
     2<html>
     3<body>
     4<div contenteditable="true" id="editable">
    85<span id="item1">Lorem</span><br>
    96more Lorem!
     
    2421<span id="item2">Thing</span>
    2522</div>
     23
     24<script src="../../resources/dump-as-markup.js"></script>
    2625<script>
    2726var s = window.getSelection();
     
    3130s.setBaseAndExtent(p1, 0, p2, 2);
    3231document.execCommand("Outdent", false, "");
     32Markup.description("This test uses the execCommand to Outdent the text below.\n" +
     33    "This demonstrates a bug: the content in the blockquote that's not in a list is pulled out of position.");
     34Markup.dump(editable);
     35
    3336</script>
     37
     38</body>
     39</html>
Note: See TracChangeset for help on using the changeset viewer.