Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute.html

Issue 1181093009: Changed cols and rows to unsigned long for HTMLTextAreaElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update LayoutTests to handle unsigned values Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute.html
diff --git a/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute.html b/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute.html
index 9e829d9f20abdf2150618ceb7233d865b0617b0d..6978fa1b8fecd05116cebed13147edf3f8c51312 100644
--- a/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute.html
+++ b/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute.html
@@ -42,8 +42,8 @@ shouldBe('colsAttributeEffect(arabicIndicDigitOne)', '20');
shouldBe('colsAttributeEffect("2" + arabicIndicDigitOne)', '2');
shouldBe('colsAttributeEffect("2147483647")', '2147483647');
-shouldBe('colsAttributeEffect("2147483648")', '20');
-shouldBe('colsAttributeEffect("4294967295")', '20');
+shouldBe('colsAttributeEffect("2147483648")', '2147483648');
+shouldBe('colsAttributeEffect("4294967295")', '4294967295');
shouldBe('colsAttributeEffect("4294967296")', '20');
</script>
</body>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698