Changeset 87264 in webkit


Ignore:
Timestamp:
May 24, 2011 9:14:51 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-24 Annie Sullivan <sullivan@chromium.org>

Reviewed by Tony Chang.

editing/deleting/5032066 should be a dump-as-markup test
https://bugs.webkit.org/show_bug.cgi?id=61327

Converts 5032066 to dump-as-markup and adds doctype, html, and body tags.

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87263 r87264  
     12011-05-24  Annie Sullivan  <sullivan@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        editing/deleting/5032066 should be a dump-as-markup test
     6        https://bugs.webkit.org/show_bug.cgi?id=61327
     7
     8        Converts 5032066 to dump-as-markup and adds doctype, html, and body tags.
     9
     10        * editing/deleting/5032066-expected.txt: Added.
     11        * editing/deleting/5032066.html:
     12        * platform/chromium-linux/editing/deleting/5032066-expected.png: Removed.
     13        * platform/chromium-win/editing/deleting/5032066-expected.png: Removed.
     14        * platform/chromium-win/editing/deleting/5032066-expected.txt: Removed.
     15        * platform/gtk/editing/deleting/5032066-expected.txt: Removed.
     16        * platform/mac-leopard/editing/deleting/5032066-expected.png: Removed.
     17        * platform/mac/editing/deleting/5032066-expected.png: Removed.
     18        * platform/mac/editing/deleting/5032066-expected.txt: Removed.
     19        * platform/qt/editing/deleting/5032066-expected.png: Removed.
     20        * platform/qt/editing/deleting/5032066-expected.txt: Removed.
     21
    1222011-05-24  Annie Sullivan  <sullivan@chromium.org>
    223
  • trunk/LayoutTests/editing/deleting/5032066.html

    r20591 r87264  
    1 <p>This tests deleting when the caret is at the start of a paragraph just after a table.  The content in that paragraph should be moved into the last table cell unless that content is another table.</p>
    2 <div contenteditable="true"><table border="1"><tr><td>All the content in this editable region&nbsp;</td></tr></table><div id="div">should be in one table cell.</div></div>
     1<!DOCTYPE html>
     2<html>
     3<body>
     4<p id="description">This tests deleting when the caret is at the start of a paragraph just after a table.  The content in that paragraph should be moved into the last table cell unless that content is another table.</p>
     5<div contenteditable="true" id="root"><table border="1"><tr><td>All the content in this editable region&nbsp;</td></tr></table><div id="div">should be in one table cell.</div></div>
    36
     7<script src="../../resources/dump-as-markup.js"></script>
    48<script>
    59var sel = window.getSelection();
     
    711sel.setPosition(div, 0);
    812document.execCommand("Delete");
     13Markup.description(description.textContent);
     14Markup.dump("root");
    915</script>
     16</body>
     17</html>
Note: See TracChangeset for help on using the changeset viewer.