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

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

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
deleted file mode 100644
index ac38b335c3796b23567300f55749a9a97caec102..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-tabular.js
+++ /dev/null
@@ -1,112 +0,0 @@
-// Up-to-date as of 2013-04-12.
-var tabularElements = {
- table: {
- // Conforming
- sortable: "boolean",
-
- // Obsolete
- align: "string",
- border: "string",
- frame: "string",
- rules: "string",
- summary: "string",
- width: "string",
- bgColor: {type: "string", treatNullAsEmptyString: true},
- cellPadding: {type: "string", treatNullAsEmptyString: true},
- cellSpacing: {type: "string", treatNullAsEmptyString: true},
- },
- caption: {
- // Obsolete
- align: "string",
- },
- colgroup: {
- span: "limited unsigned long",
-
- // Obsolete
- align: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- vAlign: "string",
- width: "string",
- },
- col: {
- // Conforming
- span: "limited unsigned long",
-
- // Obsolete
- align: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- vAlign: "string",
- width: "string",
- },
- tbody: {
- // Obsolete
- align: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- vAlign: "string",
- },
- thead: {
- // Obsolete
- align: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- vAlign: "string",
- },
- tfoot: {
- // Obsolete
- align: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- vAlign: "string",
- },
- tr: {
- // Obsolete
- align: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- vAlign: "string",
- bgColor: {type: "string", treatNullAsEmptyString: true},
- },
- td: {
- // 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",
- axis: "string",
- height: "string",
- width: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- noWrap: "boolean",
- vAlign: "string",
- bgColor: {type: "string", treatNullAsEmptyString: true},
- },
- 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",
- axis: "string",
- height: "string",
- width: "string",
- ch: {type: "string", domAttrName: "char"},
- chOff: {type: "string", domAttrName: "charoff"},
- noWrap: "boolean",
- vAlign: "string",
- bgColor: {type: "string", treatNullAsEmptyString: true},
- },
-};
-
-mergeElements(tabularElements);

Powered by Google App Engine
This is Rietveld 408576698