()
| 279 | |
| 280 | |
| 281 | def test_3916(): |
| 282 | doc = pymupdf.open() |
| 283 | rect = pymupdf.Rect(100, 100, 101, 101) # Too small for the text. |
| 284 | page = doc.new_page() |
| 285 | spare_height, scale = page.insert_htmlbox(rect, "Hello, World!", scale_low=0.5) |
| 286 | assert spare_height == -1 |
| 287 | |
| 288 | |
| 289 | def test_4400(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…