Changeset 87775 in webkit


Ignore:
Timestamp:
May 31, 2011 11:18:43 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

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

Reviewed by Ryosuke Niwa.

Convert editing/pasteboard/paste-blockquote-into-blockquote-2.html to dump-as-markup
https://bugs.webkit.org/show_bug.cgi?id=61682

Convert test to dump-as-markup and clean up HTML. Also update test description.

  • editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Added.
  • editing/pasteboard/paste-blockquote-into-blockquote-2.html:
  • platform/chromium-linux/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
  • platform/gtk/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
  • platform/mac-leopard/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
  • platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
  • platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
  • platform/qt/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
1 added
8 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87772 r87775  
     12011-05-31  Annie Sullivan  <sullivan@chromium.org>
     2
     3        Reviewed by Ryosuke Niwa.
     4
     5        Convert editing/pasteboard/paste-blockquote-into-blockquote-2.html to dump-as-markup
     6        https://bugs.webkit.org/show_bug.cgi?id=61682
     7
     8        Convert test to dump-as-markup and clean up HTML. Also update test description.
     9
     10        * editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Added.
     11        * editing/pasteboard/paste-blockquote-into-blockquote-2.html:
     12        * platform/chromium-linux/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
     13        * platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
     14        * platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
     15        * platform/gtk/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
     16        * platform/mac-leopard/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
     17        * platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Removed.
     18        * platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
     19        * platform/qt/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.txt: Removed.
     20
    1212011-05-31  Kinuko Yasuda  <kinuko@chromium.org>
    222
  • trunk/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-2.html

    r38273 r87775  
     1<!DOCTYPE html>
     2<html>
     3<head>
    14<style>
    25blockquote {
     
    710}
    811</style>
     12</head>
    913
    10 <p>This tests pasting a nested blockquote into a blockquote. The first line below should be singly-blockquoted, and the second should be doubly-quoted.</p>
    11 <div contenteditable="true"><blockquote type='cite' id="block">One</blockquote></div>
     14<body>
     15<div contenteditable="true" id="editable"><blockquote type='cite' id="block">One</blockquote></div>
    1216
     17<script src="../../resources/dump-as-markup.js"></script>
    1318<script>
    1419var sel = window.getSelection();
     
    1722sel.setPosition(block, 3);
    1823document.execCommand("InsertHTML", false, "<span><blockquote type='cite'><blockquote type='cite'><div>Two</div><div>Three</div></blockquote></blockquote></span>");
     24Markup.description("This tests pasting a nested blockquote into a blockquote. "
     25    + "The text \"One\" should be singly-blockquoted, and the text \"Two Three\" should be doubly-blockquoted. "
     26    + "However, currently \"One Two\" is singly-blockquoted and \"Three\" is doubly-blockquoted. See bug 61807.");
     27Markup.dump(editable);
    1928</script>
     29</body>
     30</html>
Note: See TracChangeset for help on using the changeset viewer.