Changeset 87470 in webkit


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

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

Reviewed by Eric Seidel.

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

Renamed 5089327.html to paste-into-blockquote-with-document-font-color.html and converted it
to a dump-as-markup test.

  • editing/pasteboard/5089327.html: Removed.
  • editing/pasteboard/paste-into-blockquote-with-document-font-color-expected.txt: Added.
  • editing/pasteboard/paste-into-blockquote-with-document-font-color.html: Copied from LayoutTests/editing/pasteboard/5089327.html.
  • platform/chromium-linux/editing/pasteboard/5089327-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/5089327-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/5089327-expected.txt: Removed.
  • platform/gtk/editing/pasteboard/5089327-expected.txt: Removed.
  • platform/mac-leopard/editing/pasteboard/5089327-expected.png: Removed.
  • platform/mac/editing/pasteboard/5089327-expected.png: Removed.
  • platform/mac/editing/pasteboard/5089327-expected.txt: Removed.
  • platform/qt/editing/pasteboard/5089327-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
1 added
8 deleted
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87468 r87470  
     12011-05-26  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        editing/pasteboard/5089327.html should be renamed and converted to a dump-as-markup test
     6        https://bugs.webkit.org/show_bug.cgi?id=61597
     7
     8        Renamed 5089327.html to paste-into-blockquote-with-document-font-color.html and converted it
     9        to a dump-as-markup test.
     10
     11        * editing/pasteboard/5089327.html: Removed.
     12        * editing/pasteboard/paste-into-blockquote-with-document-font-color-expected.txt: Added.
     13        * editing/pasteboard/paste-into-blockquote-with-document-font-color.html: Copied from
     14        LayoutTests/editing/pasteboard/5089327.html.
     15        * platform/chromium-linux/editing/pasteboard/5089327-expected.png: Removed.
     16        * platform/chromium-win/editing/pasteboard/5089327-expected.png: Removed.
     17        * platform/chromium-win/editing/pasteboard/5089327-expected.txt: Removed.
     18        * platform/gtk/editing/pasteboard/5089327-expected.txt: Removed.
     19        * platform/mac-leopard/editing/pasteboard/5089327-expected.png: Removed.
     20        * platform/mac/editing/pasteboard/5089327-expected.png: Removed.
     21        * platform/mac/editing/pasteboard/5089327-expected.txt: Removed.
     22        * platform/qt/editing/pasteboard/5089327-expected.txt: Removed.
     23
    1242011-05-26  Ryosuke Niwa  <rniwa@webkit.org>
    225
  • trunk/LayoutTests/editing/pasteboard/paste-into-blockquote-with-document-font-color.html

    r87468 r87470  
    1111</head>
    1212<body>
    13 <div id="description">This tests to make sure that content that has the document default color is pasted as blue (or whatever the color for quoted content is) when pasted in the middle of quoted content.</div>
     13<div id="description">This tests to make sure that content that has the document default color is pasted as blue
     14(or whatever the color for quoted content is) when pasted in the middle of quoted content.</div>
    1415<div id="edit" contenteditable="true"><blockquote type="cite"><div>()</div></blockquote></div>
    15 
     16<script src="../../resources/dump-as-markup.js"></script>
    1617<script>
    1718edit = document.getElementById("edit");
     
    2223
    2324document.execCommand("InsertHTML", false, "<span class='Apple-style-span' style='color: black;'>This text should be blue.</span>");
     25
     26Markup.description(description.textContent);
     27Markup.dump('edit');
    2428</script>
    2529</body>
Note: See TracChangeset for help on using the changeset viewer.