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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-tabular.js

Issue 1962003002: Import web-platform-tests@41d6911b288a9624c249a406b9bf51607a2dd04d (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Skip submit-entity-body.html Created 4 years, 7 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: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-tabular.js
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-tabular.js b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-tabular.js
index 9feff99f105fc30dd7254d36fd29967776c69ab2..ac38b335c3796b23567300f55749a9a97caec102 100644
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-tabular.js
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-tabular.js
@@ -74,6 +74,8 @@ var tabularElements = {
colSpan: {type: "unsigned long", defaultVal: 1},
rowSpan: {type: "unsigned long", defaultVal: 1},
headers: "settable tokenlist",
+ scope: {type: "enum", keywords: ["row", "col", "rowgroup", "colgroup"]},
+ abbr: "string",
// HTMLTableCellElement (Obsolete)
align: "string",
@@ -85,15 +87,14 @@ var tabularElements = {
noWrap: "boolean",
vAlign: "string",
bgColor: {type: "string", treatNullAsEmptyString: true},
-
- // HTMLTableDataCellElement (Obsolete)
- abbr: "string",
},
th: {
// HTMLTableCellElement (Conforming)
colSpan: {type: "unsigned long", defaultVal: 1},
rowSpan: {type: "unsigned long", defaultVal: 1},
headers: "settable tokenlist",
+ scope: {type: "enum", keywords: ["row", "col", "rowgroup", "colgroup"]},
+ abbr: "string",
// HTMLTableCellElement (Obsolete)
align: "string",
@@ -105,15 +106,6 @@ var tabularElements = {
noWrap: "boolean",
vAlign: "string",
bgColor: {type: "string", treatNullAsEmptyString: true},
-
- // HTMLTableHeaderCellElement (Conforming)
- // TODO: double-check that the way we're treating missing value
- // defaults is consistent here. scope has an auto state with no
- // associated keyword, which is the missing value default -- is this
- // the right syntax for that?
- scope: {type: "enum", keywords: ["row", "col", "rowgroup", "colgroup"]},
- abbr: "string",
- sorted: "string",
},
};

Powered by Google App Engine
This is Rietveld 408576698