Changeset 53844 in webkit


Ignore:
Timestamp:
Jan 26, 2010 1:42:38 AM (14 years ago)
Author:
tkent@chromium.org
Message:

2010-01-26 Kent Tamura <tkent@chromium.org>

Reviewed by Shinichiro Hamaji.

Convert textarea-rows-cols.html to dumpAsText()
https://bugs.webkit.org/show_bug.cgi?id=34074

  • fast/forms/script-tests/textarea-rows-cols.js: Added.
  • fast/forms/textarea-rows-cols-expected.txt: Added.
  • fast/forms/textarea-rows-cols.html:
  • platform/mac/fast/forms/textarea-rows-cols-expected.checksum: Removed.
  • platform/mac/fast/forms/textarea-rows-cols-expected.png: Removed.
  • platform/mac/fast/forms/textarea-rows-cols-expected.txt: Removed.
  • platform/qt/fast/forms/textarea-rows-cols-expected.txt: Removed.
  • platform/win/fast/forms/textarea-rows-cols-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
2 added
5 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53840 r53844  
     12010-01-26  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Shinichiro Hamaji.
     4
     5        Convert textarea-rows-cols.html to dumpAsText()
     6        https://bugs.webkit.org/show_bug.cgi?id=34074
     7
     8        * fast/forms/script-tests/textarea-rows-cols.js: Added.
     9        * fast/forms/textarea-rows-cols-expected.txt: Added.
     10        * fast/forms/textarea-rows-cols.html:
     11        * platform/mac/fast/forms/textarea-rows-cols-expected.checksum: Removed.
     12        * platform/mac/fast/forms/textarea-rows-cols-expected.png: Removed.
     13        * platform/mac/fast/forms/textarea-rows-cols-expected.txt: Removed.
     14        * platform/qt/fast/forms/textarea-rows-cols-expected.txt: Removed.
     15        * platform/win/fast/forms/textarea-rows-cols-expected.txt: Removed.
     16
    1172010-01-22  Jeremy Orlow  <jorlow@chromium.org>
    218
  • trunk/LayoutTests/fast/forms/textarea-rows-cols.html

    r25562 r53844  
    1 <div>Test for edge cases of &lt;textarea&gt; rows and cols attributes.</div>
    2 
    3 <hr>
    4 
    5 <div><textarea>default height</textarea></div>
    6 <div><textarea rows="1">rows = 1</textarea></div>
    7 <div><textarea rows="2">rows = 2; should match default height</textarea></div>
    8 <div><textarea rows="3">rows = 3</textarea></div>
    9 <div><textarea rows>rows; should be default height</textarea></div>
    10 <div><textarea rows="0">rows = 0; should be default height</textarea></div>
    11 <div><textarea rows="-1">rows = -1; should be default height</textarea></div>
    12 <div><textarea rows="x">rows = x; should be default height</textarea></div>
    13 
    14 <hr>
    15 
    16 <div><textarea>default width</textarea></div>
    17 <div><textarea cols="1">cols = 1</textarea></div>
    18 <div><textarea cols="20">cols = 20; should match default width</textarea></div>
    19 <div><textarea cols="40">cols = 40</textarea></div>
    20 <div><textarea cols>cols; should be default width</textarea></div>
    21 <div><textarea cols="0">cols = 0; should be default width</textarea></div>
    22 <div><textarea cols="-1">cols = -1; should be default width</textarea></div>
    23 <div><textarea cols="x">cols = x; should be default width</textarea></div>
    24 
    25 <hr>
     1<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
     2<html>
     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/textarea-rows-cols.js"></script>
     11<script src="../../fast/js/resources/js-test-post.js"></script>
     12</body>
     13</html>
Note: See TracChangeset for help on using the changeset viewer.