@@ -65,14 +65,6 @@ def draw_page(page, stream):
65
65
draw_stacking_context (stream , stacking_context )
66
66
67
67
68
- def draw_box_background_and_border (stream , page , box ):
69
- if isinstance (box , boxes .TableBox ):
70
- draw_table (stream , box )
71
- else :
72
- draw_background (stream , box .background )
73
- draw_border (stream , box )
74
-
75
-
76
68
def draw_stacking_context (stream , stacking_context ):
77
69
"""Draw a ``stacking_context`` on ``stream``."""
78
70
# See https://www.w3.org/TR/CSS2/zindex.html
@@ -123,7 +115,8 @@ def draw_stacking_context(stream, stacking_context):
123
115
boxes .InlineBlockBox , boxes .TableCellBox ,
124
116
boxes .FlexContainerBox )):
125
117
# The canvas background was removed by layout_backgrounds
126
- draw_box_background_and_border (stream , stacking_context .page , box )
118
+ draw_background (stream , box .background )
119
+ draw_border (stream , box )
127
120
128
121
with stacked (stream ):
129
122
# dont clip the PageBox, see #35
@@ -142,8 +135,11 @@ def draw_stacking_context(stream, stacking_context):
142
135
143
136
# Point 4
144
137
for block in stacking_context .block_level_boxes :
145
- draw_box_background_and_border (
146
- stream , stacking_context .page , block )
138
+ if isinstance (block , boxes .TableBox ):
139
+ draw_table (stream , block )
140
+ else :
141
+ draw_background (stream , block .background )
142
+ draw_border (stream , block )
147
143
148
144
# Point 5
149
145
for child_context in stacking_context .float_contexts :
0 commit comments