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

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

Issue 1196283003: HTMLTableColElement span type set to unsigned (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated test to reflect 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLTableColElement/span-attribute-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
diff --git a/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html b/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
index c4fcba8424c9f966053f733bd37f58cdee594719..eec4a562cf02c63a419011bc2809a04d4a8db473 100644
--- a/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
+++ b/LayoutTests/fast/dom/HTMLTableColElement/span-attribute.html
@@ -42,8 +42,8 @@ shouldBe('spanAttributeEffect(arabicIndicDigitOne)', '1');
shouldBe('spanAttributeEffect("2" + arabicIndicDigitOne)', '2');
shouldBe('spanAttributeEffect("2147483647")', '2147483647');
-shouldBe('spanAttributeEffect("2147483648")', '1');
-shouldBe('spanAttributeEffect("4294967295")', '1');
+shouldBe('spanAttributeEffect("2147483648")', '2147483648');
+shouldBe('spanAttributeEffect("4294967295")', '4294967295');
shouldBe('spanAttributeEffect("4294967296")', '1');
</script>
</body>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLTableColElement/span-attribute-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698