Changeset 56506 in webkit


Ignore:
Timestamp:
Mar 25, 2010 12:34:04 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-25 Kinuko Yasuda <kinuko@chromium.org>

Reviewed by David Levin.

Rewrite the layout test editing/inserting/6633727 to use dumpAsText
https://bugs.webkit.org/show_bug.cgi?id=31579

  • editing/inserting/6633727-expected.txt: Added.
  • editing/inserting/6633727.html:
  • editing/inserting/script-tests/6633727.js: Added.
  • platform/gtk/editing/inserting/6633727-expected.txt: Removed.
  • platform/mac/editing/inserting/6633727-expected.checksum: Removed.
  • platform/mac/editing/inserting/6633727-expected.png: Removed.
  • platform/mac/editing/inserting/6633727-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
2 added
4 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r56492 r56506  
     12010-03-25  Kinuko Yasuda  <kinuko@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        Rewrite the layout test editing/inserting/6633727 to use dumpAsText
     6        https://bugs.webkit.org/show_bug.cgi?id=31579
     7
     8        * editing/inserting/6633727-expected.txt: Added.
     9        * editing/inserting/6633727.html:
     10        * editing/inserting/script-tests/6633727.js: Added.
     11        * platform/gtk/editing/inserting/6633727-expected.txt: Removed.
     12        * platform/mac/editing/inserting/6633727-expected.checksum: Removed.
     13        * platform/mac/editing/inserting/6633727-expected.png: Removed.
     14        * platform/mac/editing/inserting/6633727-expected.txt: Removed.
     15
    1162010-03-24  Mark Rowe  <mrowe@apple.com>
    217
  • trunk/LayoutTests/editing/inserting/6633727.html

    r41788 r56506  
     1<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
    12<html>
    2     <head>
    3         <script>
    4             function test() {
    5                 var s = window.getSelection();
    6                 s.setPosition(document.getElementById('anchor'), 1);
    7                 document.execCommand("InsertParagraph");
    8                 document.execCommand("InsertText", false, "2");
    9             }
    10         </script>
    11     </head>
    12     <body onload="test()">
    13         This tests the fix for &lt;rdar://problem/6633727&gt; Hitting return at the end of a line with an anchor jumps me to the bottom of the message<br>
    14         If the test has passed, the numbers should be in order, and only "1" should be a link.<br>
    15         <div contenteditable>
    16             <a href="#" id="anchor">1</a><div>3</div>
    17         </div>
    18     </body>
     3<head>
     4<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
     5<script src="../../fast/js/resources/js-test-pre.js"></script>
     6</head>
     7<body>
     8<p id="description"></p>
     9<div id="console"></div>
     10<script src="script-tests/6633727.js"></script>
     11<script src="../../fast/js/resources/js-test-post.js"></script>
    1912</body>
     13</html>
Note: See TracChangeset for help on using the changeset viewer.