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

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

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
Index: LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute-expected.txt
diff --git a/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute-expected.txt b/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute-expected.txt
index 9f70b9a58be615897f14a88607202e4a1f213c23..4a5ae323fe93d678c9456b65890d2ac41683aa19 100644
--- a/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute-expected.txt
+++ b/LayoutTests/fast/dom/HTMLTextAreaElement/cols-attribute-expected.txt
@@ -22,8 +22,8 @@ PASS colsAttributeEffect(" 7") is 7
PASS colsAttributeEffect(arabicIndicDigitOne) is 20
PASS colsAttributeEffect("2" + arabicIndicDigitOne) is 2
PASS colsAttributeEffect("2147483647") is 2147483647
-PASS colsAttributeEffect("2147483648") is 20
-PASS colsAttributeEffect("4294967295") is 20
+PASS colsAttributeEffect("2147483648") is 2147483648
+PASS colsAttributeEffect("4294967295") is 4294967295
PASS colsAttributeEffect("4294967296") is 20
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698