-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow scope attribute on table heading tags, not on table data tags; …
…adapt tests
- Loading branch information
Showing
4 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
repository/Seaside-Canvas.package/WATableHeadingTag.class/instance/scope..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
attributes | ||
scope: aString | ||
"This attribute specifies the set of data cells for which the current header cell provides header information. This attribute may be used in place of the headers attribute, particularly for simple tables. When specified, this attribute must have one of the following values: | ||
- row: The current cell provides header information for the rest of the row that contains it (see also the section on table directionality). | ||
- col: The current cell provides header information for the rest of the column that contains it. | ||
- rowgroup: The header cell provides header information for the rest of the row group that contains it. | ||
- colgroup: The header cell provides header information for the rest of the column group that contains it." | ||
|
||
self attributes at: 'scope' put: aString |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Tests-Canvas.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #'Seaside-Tests-Canvas'! | ||
self packageOrganizer ensurePackage: #'Seaside-Tests-Canvas' withTags: #()! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters