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

Unified Diff: LayoutTests/fast/dom/HTMLTableCellElement/colspan-attribute-expected.txt

Issue 828343003: Stricter parsing for rowSpan/ColSpan on th/td element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Also add test for colspan Created 5 years, 11 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/colspan-attribute-expected.txt
diff --git a/LayoutTests/fast/dom/HTMLTableCellElement/colspan-attribute-expected.txt b/LayoutTests/fast/dom/HTMLTableCellElement/colspan-attribute-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4c4f832fc0ac92e4c74be6efb34b8fbda2578240
--- /dev/null
+++ b/LayoutTests/fast/dom/HTMLTableCellElement/colspan-attribute-expected.txt
@@ -0,0 +1,31 @@
+HTMLTableCellElement colspan attribute test
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS document.createElement("td").colSpan is 1
+PASS colspanAttributeEffect("") is 1
+PASS colspanAttributeEffect("1") is 1
+PASS colspanAttributeEffect("2") is 2
+PASS colspanAttributeEffect("10") is 10
+PASS colspanAttributeEffect("0") is 1
+PASS colspanAttributeEffect("-1") is 1
+PASS colspanAttributeEffect("1x") is 1
+PASS colspanAttributeEffect("1.") is 1
+PASS colspanAttributeEffect("1.9") is 1
+PASS colspanAttributeEffect("2x") is 2
+PASS colspanAttributeEffect("2.") is 2
+PASS colspanAttributeEffect("2.9") is 2
+PASS colspanAttributeEffect("a") is 1
+PASS colspanAttributeEffect(" 7") is 1
+PASS colspanAttributeEffect(" 7") is 7
+PASS colspanAttributeEffect(arabicIndicDigitOne) is 1
+PASS colspanAttributeEffect("2" + arabicIndicDigitOne) is 2
+PASS colspanAttributeEffect("2147483647") is 8190
+PASS colspanAttributeEffect("2147483648") is 1
+PASS colspanAttributeEffect("4294967295") is 1
+PASS colspanAttributeEffect("4294967296") is 1
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Powered by Google App Engine
This is Rietveld 408576698