mirror of
https://github.com/typst/typst
synced 2025-05-16 18:15:29 +08:00
9 lines
206 B
XML
9 lines
206 B
XML
// Test that image measurement doesn't turn `inf / some-value` into 0pt.
|
|
// Ref: false
|
|
|
|
---
|
|
#context {
|
|
let size = measure(image("/assets/images/tiger.jpg"))
|
|
test(size, (width: 1024pt, height: 670pt))
|
|
}
|