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

Unified Diff: LayoutTests/fast/dom/HTMLTextAreaElement/rows-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
Index: LayoutTests/fast/dom/HTMLTextAreaElement/rows-attribute.html
diff --git a/LayoutTests/fast/dom/HTMLTextAreaElement/rows-attribute.html b/LayoutTests/fast/dom/HTMLTextAreaElement/rows-attribute.html
index 7c803aa4515b8a1daa5e07e24fc7800c95f656f8..8341645d6fc9fb81b44c131da605d5a24875bc61 100644
--- a/LayoutTests/fast/dom/HTMLTextAreaElement/rows-attribute.html
+++ b/LayoutTests/fast/dom/HTMLTextAreaElement/rows-attribute.html
@@ -42,8 +42,8 @@ shouldBe('rowsAttributeEffect(arabicIndicDigitOne)', '2');
shouldBe('rowsAttributeEffect("2" + arabicIndicDigitOne)', '2');
shouldBe('rowsAttributeEffect("2147483647")', '2147483647');
-shouldBe('rowsAttributeEffect("2147483648")', '2');
-shouldBe('rowsAttributeEffect("4294967295")', '2');
+shouldBe('rowsAttributeEffect("2147483648")', '2147483648');
+shouldBe('rowsAttributeEffect("4294967295")', '4294967295');
shouldBe('rowsAttributeEffect("4294967296")', '2');
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698