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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html

Issue 2518163002: [css-tables] Fix divide-by-zero resulting from 32-bit overflow (Closed)
Patch Set: update wpt -expected.txt and span-attribute.html but not -expected.txt Created 4 years 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: third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
index eec4a562cf02c63a419011bc2809a04d4a8db473..527adc87065d8379036b803d2dcd091b23e230c5 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
@@ -41,9 +41,9 @@ var arabicIndicDigitOne = String.fromCharCode(0x661);
shouldBe('spanAttributeEffect(arabicIndicDigitOne)', '1');
shouldBe('spanAttributeEffect("2" + arabicIndicDigitOne)', '2');
-shouldBe('spanAttributeEffect("2147483647")', '2147483647');
-shouldBe('spanAttributeEffect("2147483648")', '2147483648');
-shouldBe('spanAttributeEffect("4294967295")', '4294967295');
+shouldBe('spanAttributeEffect("2147483647")', '8190');
+shouldBe('spanAttributeEffect("2147483648")', '8190');
+shouldBe('spanAttributeEffect("4294967295")', '8190');
shouldBe('spanAttributeEffect("4294967296")', '1');
</script>
</body>
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | third_party/WebKit/LayoutTests/fast/table/large-col-span-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698