Home | History | Annotate | Download | only in xml

Lines Matching defs:Tables

405 type Tables struct {
410 var tables = []struct {
412 tab Tables
416 xml: `<Tables>` +
419 `</Tables>`,
420 tab: Tables{"hello", "world"},
423 xml: `<Tables>` +
426 `</Tables>`,
427 tab: Tables{"hello", "world"},
430 xml: `<Tables xmlns:f="http://www.w3schools.com/furniture" xmlns:h="http://www.w3.org/TR/html4/">` +
433 `</Tables>`,
434 tab: Tables{"hello", "world"},
437 xml: `<Tables>` +
439 `</Tables>`,
440 tab: Tables{},
443 xml: `<Tables>` +
445 `</Tables>`,
446 tab: Tables{HTable: "only"},
450 xml: `<Tables>` +
452 `</Tables>`,
453 tab: Tables{FTable: "only"},
457 xml: `<Tables>` +
459 `</Tables>`,
460 tab: Tables{},
466 for i, tt := range tables {
467 var dst Tables
488 dst := Tables{"hello", "world"}
493 want := `<Tables><table xmlns="http://www.w3.org/TR/html4/">hello</table><table xmlns="http://www.w3schools.com/furniture">world</table></Tables>`