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

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

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
« no previous file with comments | « Source/core/html/HTMLTableCellElement.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLTableCellElement.idl
diff --git a/Source/core/html/HTMLTableCellElement.idl b/Source/core/html/HTMLTableCellElement.idl
index ef01b8c92bfdca3502392e4ec9e2270f2ba9d544..7a9a8d8e8c0f325729569e267b45f6befa9efc1b 100644
--- a/Source/core/html/HTMLTableCellElement.idl
+++ b/Source/core/html/HTMLTableCellElement.idl
@@ -21,9 +21,8 @@
// https://html.spec.whatwg.org/#attributes-common-to-td-and-th-elements
interface HTMLTableCellElement : HTMLElement {
- // TODO(philipj): All long types should be unsigned long.
- attribute long colSpan;
- attribute long rowSpan;
+ attribute unsigned long colSpan;
+ attribute unsigned long rowSpan;
// TODO(philipj): headers should be a [PutForwards=value] readonly attribute
// DOMSettableTokenList.
[Reflect, TreatNullAs=NullString] attribute DOMString headers;
« no previous file with comments | « Source/core/html/HTMLTableCellElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698