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

Unified Diff: LayoutTests/fast/dom/HTMLTableCellElement/rowspan-attribute.html

Issue 1198393002: HTMLTableCellElement type changed from signed to unsinged (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reverted cellIndex changes and updated layout test o correspond with the changes. 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/HTMLTableCellElement/rowspan-attribute.html
diff --git a/LayoutTests/fast/dom/HTMLTableCellElement/rowspan-attribute.html b/LayoutTests/fast/dom/HTMLTableCellElement/rowspan-attribute.html
index 8a3fbd5f947f2d950f3445c6d1f8e5954ef53a06..df03962530fbbea41072ae36a33f1216ceb325e5 100644
--- a/LayoutTests/fast/dom/HTMLTableCellElement/rowspan-attribute.html
+++ b/LayoutTests/fast/dom/HTMLTableCellElement/rowspan-attribute.html
@@ -42,8 +42,7 @@ shouldBe('rowspanAttributeEffect(arabicIndicDigitOne)', '1');
shouldBe('rowspanAttributeEffect("2" + arabicIndicDigitOne)', '2');
shouldBe('rowspanAttributeEffect("2147483647")', '8190');
-shouldBe('rowspanAttributeEffect("2147483648")', '1');
-shouldBe('rowspanAttributeEffect("4294967295")', '1');
+shouldBe('rowspanAttributeEffect("4294967295")', '8190');
shouldBe('rowspanAttributeEffect("4294967296")', '1');
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698