Changeset 82913 in webkit


Ignore:
Timestamp:
Apr 5, 2011 1:41:29 AM (13 years ago)
Author:
tkent@chromium.org
Message:

2011-04-05 Kent Tamura <tkent@chromium.org>

Update a test affected by the behavior change of r82908.
https://bugs.webkit.org/show_bug.cgi?id=57636

  • fast/forms/ValidityState-tooLong-textarea-expected.txt:
  • fast/forms/script-tests/ValidityState-tooLong-textarea.js:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r82911 r82913  
     12011-04-05  Kent Tamura  <tkent@chromium.org>
     2
     3        Update a test affected by the behavior change of r82908.
     4        https://bugs.webkit.org/show_bug.cgi?id=57636
     5
     6        * fast/forms/ValidityState-tooLong-textarea-expected.txt:
     7        * fast/forms/script-tests/ValidityState-tooLong-textarea.js:
     8
    192011-04-05  Philippe Normand  <pnormand@igalia.com>
    210
  • trunk/LayoutTests/fast/forms/ValidityState-tooLong-textarea-expected.txt

    r73999 r82913  
    3232PASS textarea.validity.tooLong is false
    3333PASS textarea.validity.tooLong is true
    34 PASS textarea.value is "abcdef"
    35 PASS textarea.validity.tooLong is false
     34PASS textarea.value is "def"
     35PASS textarea.validity.tooLong is true
    3636PASS successfullyParsed is true
    3737
  • trunk/LayoutTests/fast/forms/script-tests/ValidityState-tooLong-textarea.js

    r73999 r82913  
    7777shouldBeTrue('textarea.validity.tooLong');
    7878parent.firstChild.innerHTML = 'abcdef';
    79 shouldBe('textarea.value', '"abcdef"');
    80 shouldBeFalse('textarea.validity.tooLong');
     79shouldBe('textarea.value', '"def"');
     80shouldBeTrue('textarea.validity.tooLong');
    8181
    8282var successfullyParsed = true;
Note: See TracChangeset for help on using the changeset viewer.