Changeset 51427 in webkit


Ignore:
Timestamp:
Nov 26, 2009 9:53:00 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-26 Kinuko Yasuda <kinuko@chromium.com>

Reviewed by Eric Seidel.

Rewrite the test fast/parser/comment-in-textarea to use dumpAsText
so that the expected results can be independent of platform differences.
https://bugs.webkit.org/show_bug.cgi?id=31580

  • fast/parser/comment-in-textarea-expected.txt: Added.
  • fast/parser/comment-in-textarea.html:
  • fast/parser/script-tests/comment-in-textarea.js: Added.
  • platform/mac/fast/parser/comment-in-textarea-expected.checksum: Removed.
  • platform/mac/fast/parser/comment-in-textarea-expected.png: Removed.
  • platform/mac/fast/parser/comment-in-textarea-expected.txt: Removed.
  • platform/win/fast/parser/comment-in-textarea-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
2 added
4 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r51420 r51427  
     12009-11-26  Kinuko Yasuda  <kinuko@chromium.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Rewrite the test fast/parser/comment-in-textarea to use dumpAsText
     6        so that the expected results can be independent of platform differences.
     7        https://bugs.webkit.org/show_bug.cgi?id=31580
     8
     9        * fast/parser/comment-in-textarea-expected.txt: Added.
     10        * fast/parser/comment-in-textarea.html:
     11        * fast/parser/script-tests/comment-in-textarea.js: Added.
     12        * platform/mac/fast/parser/comment-in-textarea-expected.checksum: Removed.
     13        * platform/mac/fast/parser/comment-in-textarea-expected.png: Removed.
     14        * platform/mac/fast/parser/comment-in-textarea-expected.txt: Removed.
     15        * platform/win/fast/parser/comment-in-textarea-expected.txt: Removed.
     16
    1172009-11-26  Daniel Bates  <dbates@webkit.org>
    218
  • trunk/LayoutTests/fast/parser/comment-in-textarea.html

    r34787 r51427  
     1<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
    12<html>
     3<head>
     4<link rel="stylesheet" href="../js/resources/js-test-style.css">
     5<script src="../js/resources/js-test-pre.js"></script>
     6</head>
    27<body>
    3 <textarea>
    4 <!-- </textarea> -->
    5 This should be part of the textarea
    6 </textarea>
     8<p id="description"></p>
     9<div id="console"></div>
     10<script src="script-tests/comment-in-textarea.js"></script>
     11<script src="../js/resources/js-test-post.js"></script>
    712</body>
    813</html>
Note: See TracChangeset for help on using the changeset viewer.