Commit 58ff7c7a authored by tkent@chromium.org's avatar tkent@chromium.org

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:

git-svn-id: svn://svn.chromium.org/blink/trunk@82913 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent d6edd883
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:
2011-04-05 Philippe Normand <pnormand@igalia.com>
Unreviewed, GTK rebaseline after r82903.
......@@ -31,8 +31,8 @@ PASS textarea.validity.tooLong is true
PASS textarea.value is "abc"
PASS textarea.validity.tooLong is false
PASS textarea.validity.tooLong is true
PASS textarea.value is "abcdef"
PASS textarea.validity.tooLong is false
PASS textarea.value is "def"
PASS textarea.validity.tooLong is true
PASS successfullyParsed is true
TEST COMPLETE
......
......@@ -76,7 +76,7 @@ textarea = parent.firstChild;
textarea.value = 'def';
shouldBeTrue('textarea.validity.tooLong');
parent.firstChild.innerHTML = 'abcdef';
shouldBe('textarea.value', '"abcdef"');
shouldBeFalse('textarea.validity.tooLong');
shouldBe('textarea.value', '"def"');
shouldBeTrue('textarea.validity.tooLong');
var successfullyParsed = true;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment