Changeset 87606 in webkit


Ignore:
Timestamp:
May 28, 2011 12:17:58 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

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

Reviewed by Ryosuke Niwa.

editing/style/non-inheritable-styles should be dump-as-markup test
https://bugs.webkit.org/show_bug.cgi?id=61681

Converts the test to dump-as-markup and cleans up the HTML a bit.

  • editing/style/non-inheritable-styles-expected.txt: Added.
  • editing/style/non-inheritable-styles.html:
  • platform/chromium-linux/editing/style/non-inheritable-styles-expected.png: Removed.
  • platform/chromium-win/editing/style/non-inheritable-styles-expected.png: Removed.
  • platform/chromium-win/editing/style/non-inheritable-styles-expected.txt: Removed.
  • platform/gtk/editing/style/non-inheritable-styles-expected.png: Removed.
  • platform/gtk/editing/style/non-inheritable-styles-expected.txt: Removed.
  • platform/mac-leopard/editing/style/non-inheritable-styles-expected.png: Removed.
  • platform/mac/editing/style/non-inheritable-styles-expected.png: Removed.
  • platform/mac/editing/style/non-inheritable-styles-expected.txt: Removed.
  • platform/qt/editing/style/non-inheritable-styles-expected.png: Removed.
  • platform/qt/editing/style/non-inheritable-styles-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
1 added
10 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r87605 r87606  
     12011-05-28  Annie Sullivan  <sullivan@chromium.org>
     2
     3        Reviewed by Ryosuke Niwa.
     4
     5        editing/style/non-inheritable-styles should be dump-as-markup test
     6        https://bugs.webkit.org/show_bug.cgi?id=61681
     7
     8        Converts the test to dump-as-markup and cleans up the HTML a bit.
     9
     10        * editing/style/non-inheritable-styles-expected.txt: Added.
     11        * editing/style/non-inheritable-styles.html:
     12        * platform/chromium-linux/editing/style/non-inheritable-styles-expected.png: Removed.
     13        * platform/chromium-win/editing/style/non-inheritable-styles-expected.png: Removed.
     14        * platform/chromium-win/editing/style/non-inheritable-styles-expected.txt: Removed.
     15        * platform/gtk/editing/style/non-inheritable-styles-expected.png: Removed.
     16        * platform/gtk/editing/style/non-inheritable-styles-expected.txt: Removed.
     17        * platform/mac-leopard/editing/style/non-inheritable-styles-expected.png: Removed.
     18        * platform/mac/editing/style/non-inheritable-styles-expected.png: Removed.
     19        * platform/mac/editing/style/non-inheritable-styles-expected.txt: Removed.
     20        * platform/qt/editing/style/non-inheritable-styles-expected.png: Removed.
     21        * platform/qt/editing/style/non-inheritable-styles-expected.txt: Removed.
     22
    1232011-05-27  Nikolas Zimmermann  <nzimmermann@rim.com>
    224
  • trunk/LayoutTests/editing/style/non-inheritable-styles.html

    r17562 r87606  
    1 <script>
    2 if (window.layoutTestController)
    3      layoutTestController.dumpEditingCallbacks();
    4 </script>
     1<!DOCTYPE html>
     2<html>
     3<head>
    54<style>
    65div {
     
    1413}
    1514</style>
     15</head>
    1616
    1717<body>
    18 <p>This tests copy.  Non-inheritable styles should be brought down from stylesheets.</p>
    1918<span id="copy" style="display:block" contenteditable="true">
    2019This shouldn't have a border.
     
    2322<span id="paste" style="display:block" contenteditable="true"></span>
    2423
    25 </body>
     24<script src="../../resources/dump-as-markup.js"></script>
    2625<script>
    2726var sel = window.getSelection();
     
    3837sel.setPosition(paste, 0);
    3938document.execCommand("Paste");
     39Markup.description("This tests copy.  Non-inheritable styles should be brought down from stylesheets.");
     40Markup.dump(document.getElementById("paste"));
    4041</script>
    4142</body>
     43</html>
Note: See TracChangeset for help on using the changeset viewer.