IronPdf.Native.UpdatedChrome
Contains a newer version of Chromium for applications that require CSS or rendering features not available in the standard package.
- Requires the IronPdf.Slim and IronSoftware.Native.Model packages to function.
- Includes OS-specific dependencies for the updated version of Chromium.
- New settings and security updates.
- Not compatible with Windows Server 2012, 32-bit processes, or
SingleProcessmode.
Compatibility Information with Latest Chromium
- SingleProcess is not available.
- Windows Server 2012 is not supported.
- 32-bit processes are no longer supported.
Windows
Linux
Mac
Design Resolutions
IronPdf.Native.UpdatedChrome ships with CEF engine version 131. The standard IronPdf package uses CEF 109 for compatibility with older Windows Server versions. The newer engine resolves CSS rendering issues that CEF 109 cannot address.
CSS overflow:hidden
In the standard package, content inside an element with overflow: hidden may extend beyond the defined boundaries. CEF 131 clips the overflow correctly.
CSS line-height with Custom Paper Size
A CSS line-height of 129% combined with a custom paper size (for example, 6 x 9 inches) causes mispositioned text in CEF 109. CEF 131 positions the text according to the specified dimensions.
CSS Grid Subgrid
The standard package does not render subgrid correctly in CSS grid layouts. The following layout fails in CEF 109 but renders as expected with IronPdf.Native.UpdatedChrome:
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr">
<div style="display: grid; grid-template-columns: subgrid; grid-column: 1/4">
</div>
</div>
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr">
<div style="display: grid; grid-template-columns: subgrid; grid-column: 1/4">
</div>
</div>

