Skip to content

Commit 018ff6b

Browse files
committed
Remove useless function
1 parent 3110363 commit 018ff6b

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

weasyprint/draw.py

+7-11
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,6 @@ def draw_page(page, stream):
6565
draw_stacking_context(stream, stacking_context)
6666

6767

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-
7668
def draw_stacking_context(stream, stacking_context):
7769
"""Draw a ``stacking_context`` on ``stream``."""
7870
# See https://www.w3.org/TR/CSS2/zindex.html
@@ -123,7 +115,8 @@ def draw_stacking_context(stream, stacking_context):
123115
boxes.InlineBlockBox, boxes.TableCellBox,
124116
boxes.FlexContainerBox)):
125117
# 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)
127120

128121
with stacked(stream):
129122
# dont clip the PageBox, see #35
@@ -142,8 +135,11 @@ def draw_stacking_context(stream, stacking_context):
142135

143136
# Point 4
144137
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)
147143

148144
# Point 5
149145
for child_context in stacking_context.float_contexts:

0 commit comments

Comments
 (0)