Skip to content

[css-gcmp-3] fix incorrect value for break-before per #3524 #4812

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[css-gcmp-3] fix incorrect value for break-before per #3524
  • Loading branch information
dauwhe committed Feb 27, 2020
commit 73e1b7eab3d295df5714a6c6c25da99ef1283dd0
8 changes: 4 additions & 4 deletions css-gcpm-3/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -738,11 +738,11 @@ CSS:
<pre>
div {
page: A;
break-before: always;
break-before: page;
}
child {
page: B;
break-before: always;
break-before: page;
}
</pre>
<figure>
Expand Down Expand Up @@ -791,12 +791,12 @@ And CSS:
<pre>
div.chapter {
page: body;
break-before: always;
break-before: page;
}

table.broadside {
page: broadside;
break-before: always;
break-before: page;
}

</pre>
Expand Down