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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/dom/elements-tabular.js

Issue 2273143002: Update web-platform-tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update baseline Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Up-to-date as of 2013-04-12. 1 // Up-to-date as of 2013-04-12.
2 var tabularElements = { 2 var tabularElements = {
3 table: { 3 table: {
4 // Conforming 4 // Conforming
5 sortable: "boolean", 5 sortable: "boolean",
6 6
7 // Obsolete 7 // Obsolete
8 align: "string", 8 align: "string",
9 border: "string", 9 border: "string",
10 frame: "string", 10 frame: "string",
11 rules: "string", 11 rules: "string",
12 summary: "string", 12 summary: "string",
13 width: "string", 13 width: "string",
14 bgColor: {type: "string", treatNullAsEmptyString: true}, 14 bgColor: {type: "string", treatNullAsEmptyString: true},
15 cellPadding: {type: "string", treatNullAsEmptyString: true}, 15 cellPadding: {type: "string", treatNullAsEmptyString: true},
16 cellSpacing: {type: "string", treatNullAsEmptyString: true}, 16 cellSpacing: {type: "string", treatNullAsEmptyString: true},
17 }, 17 },
18 caption: { 18 caption: {
19 // Obsolete 19 // Obsolete
20 align: "string", 20 align: "string",
21 }, 21 },
22 colgroup: { 22 colgroup: {
23 span: "limited unsigned long", 23 span: {type: "limited unsigned long with fallback", defaultVal: 1},
24 24
25 // Obsolete 25 // Obsolete
26 align: "string", 26 align: "string",
27 ch: {type: "string", domAttrName: "char"}, 27 ch: {type: "string", domAttrName: "char"},
28 chOff: {type: "string", domAttrName: "charoff"}, 28 chOff: {type: "string", domAttrName: "charoff"},
29 vAlign: "string", 29 vAlign: "string",
30 width: "string", 30 width: "string",
31 }, 31 },
32 col: { 32 col: {
33 // Conforming 33 // Conforming
34 span: "limited unsigned long", 34 span: {type: "limited unsigned long with fallback", defaultVal: 1},
35 35
36 // Obsolete 36 // Obsolete
37 align: "string", 37 align: "string",
38 ch: {type: "string", domAttrName: "char"}, 38 ch: {type: "string", domAttrName: "char"},
39 chOff: {type: "string", domAttrName: "charoff"}, 39 chOff: {type: "string", domAttrName: "charoff"},
40 vAlign: "string", 40 vAlign: "string",
41 width: "string", 41 width: "string",
42 }, 42 },
43 tbody: { 43 tbody: {
44 // Obsolete 44 // Obsolete
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 width: "string", 103 width: "string",
104 ch: {type: "string", domAttrName: "char"}, 104 ch: {type: "string", domAttrName: "char"},
105 chOff: {type: "string", domAttrName: "charoff"}, 105 chOff: {type: "string", domAttrName: "charoff"},
106 noWrap: "boolean", 106 noWrap: "boolean",
107 vAlign: "string", 107 vAlign: "string",
108 bgColor: {type: "string", treatNullAsEmptyString: true}, 108 bgColor: {type: "string", treatNullAsEmptyString: true},
109 }, 109 },
110 }; 110 };
111 111
112 mergeElements(tabularElements); 112 mergeElements(tabularElements);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698