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

Unified Diff: Source/core/html/HTMLTableCellElement.h

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: Source/core/html/HTMLTableCellElement.h
diff --git a/Source/core/html/HTMLTableCellElement.h b/Source/core/html/HTMLTableCellElement.h
index 624036c2f7a8d62b38d6afaf156db6db4016be3f..e4225a2e0b520adc1ef57e543da7569b4f86704b 100644
--- a/Source/core/html/HTMLTableCellElement.h
+++ b/Source/core/html/HTMLTableCellElement.h
@@ -38,16 +38,16 @@ public:
int cellIndex() const;
- int colSpan() const;
- int rowSpan() const;
+ unsigned colSpan() const;
+ unsigned rowSpan() const;
void setCellIndex(int);
const AtomicString& abbr() const;
const AtomicString& axis() const;
- void setColSpan(int);
+ void setColSpan(unsigned);
const AtomicString& headers() const;
- void setRowSpan(int);
+ void setRowSpan(unsigned);
const AtomicString& scope() const;
HTMLTableCellElement* cellAbove() const;
« no previous file with comments | « LayoutTests/fast/dom/HTMLTableCellElement/rowspan-attribute-expected.txt ('k') | Source/core/html/HTMLTableCellElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698