Changeset 87478 in webkit


Ignore:
Timestamp:
May 26, 2011 11:43:29 PM (13 years ago)
Author:
rniwa@webkit.org
Message:

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

Reviewed by Adam Barth.

Convert editing/pasteboard/paste-blockquote-1.html to a dump-as-markup test
https://bugs.webkit.org/show_bug.cgi?id=61608

Converted paste-blockquote-1.html to a dump-as-markup test.

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87477 r87478  
     12011-05-26  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Convert editing/pasteboard/paste-blockquote-1.html to a dump-as-markup test
     6        https://bugs.webkit.org/show_bug.cgi?id=61608
     7
     8        Converted paste-blockquote-1.html to a dump-as-markup test.
     9
     10        * editing/pasteboard/paste-blockquote-1-expected.txt: Added.
     11        * editing/pasteboard/paste-blockquote-1.html:
     12        * platform/chromium-linux/editing/pasteboard/paste-blockquote-1-expected.png: Removed.
     13        * platform/chromium-win/editing/pasteboard/paste-blockquote-1-expected.png: Removed.
     14        * platform/chromium-win/editing/pasteboard/paste-blockquote-1-expected.txt: Removed.
     15        * platform/gtk/editing/pasteboard/paste-blockquote-1-expected.txt: Removed.
     16        * platform/mac-leopard/editing/pasteboard/paste-blockquote-1-expected.png: Removed.
     17        * platform/mac/editing/pasteboard/paste-blockquote-1-expected.png: Removed.
     18        * platform/mac/editing/pasteboard/paste-blockquote-1-expected.txt: Removed.
     19        * platform/qt/editing/pasteboard/paste-blockquote-1-expected.txt: Removed.
     20
    1212011-05-26  Ryosuke Niwa  <rniwa@webkit.org>
    222
  • trunk/LayoutTests/editing/pasteboard/paste-blockquote-1.html

    r17832 r87478  
     1<!DOCTYPE html>
     2<html>
     3<head>
     4<script src="../../../resources/dump-as-markup.js"></script>
    15<style>
    26blockquote {
     
    711}
    812</style>
    9 
    10 <p>This tests pasting a blockquote into an empty paragraph.</p>
     13</head>
     14<body>
    1115<div id="div" contenteditable="true"></div>
    12 
     16<script src="../../resources/dump-as-markup.js"></script>
    1317<script>
    1418var sel = window.getSelection();
     
    1721sel.setPosition(div, 0);
    1822document.execCommand("InsertHTML", false, "<blockquote type='cite'>This should be blockquoted.</blockquote>");
     23
     24Markup.description('This tests pasting a blockquote into an empty paragraph.');
     25Markup.dump('div');
     26
    1927</script>
     28</body>
     29</html>
Note: See TracChangeset for help on using the changeset viewer.